Rename exported3_radio_prop to radio_control_prop

The context name exported3_radio_prop is ambiguous and does not reflect
the usage and role of the properties. This changes its name to
radio_control_prop.

Some downstream branches are still using exported3_radio_prop, so
get_prop(domain, radio_control_prop) is added to avoid regression. It's
just a workaround and to be removed soon, after all exported3_radio_prop
are cleaned up.

Bug: 162214733
Test: boot a device with a sim and see basic functions work
Change-Id: I0ce7c701d3ed21deb03f06a69805205b882c1363
Merged-In: I0ce7c701d3ed21deb03f06a69805205b882c1363
diff --git a/vendor/google/modem_svc.te b/vendor/google/modem_svc.te
index 4fbf0fd..eb2d70a 100644
--- a/vendor/google/modem_svc.te
+++ b/vendor/google/modem_svc.te
@@ -11,7 +11,7 @@
 set_prop(modem_svc, vendor_modem_diag_prop)
 set_prop(modem_svc, vendor_modem_prop)
 get_prop(modem_svc, vendor_build_type_prop)
-get_prop(modem_svc, exported3_radio_prop)
+get_prop(modem_svc, radio_control_prop)
 
 # For bugreport collection
 allow modem_svc hal_dumpstate_impl:fd use;
diff --git a/vendor/qcom/common/modem_diagnostics.te b/vendor/qcom/common/modem_diagnostics.te
index 8476f60..30bf413 100644
--- a/vendor/qcom/common/modem_diagnostics.te
+++ b/vendor/qcom/common/modem_diagnostics.te
@@ -16,5 +16,5 @@
   unix_socket_connect(modem_diagnostic_app, diag, qlogd);
 
   set_prop(modem_diagnostic_app, vendor_modem_diag_prop)
-  set_prop(modem_diagnostic_app, exported3_radio_prop)
+  set_prop(modem_diagnostic_app, radio_control_prop)
 ')