summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Hakjun Choi <hakjunc@google.com> 2024-09-05 00:09:01 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-09-05 00:09:01 +0000
commit6fc40f610428327a04dc89ff92fc7a428f63483c (patch)
tree7266f95935599680da84dd4946d1afafa3ea6ba1
parentb0b3244e01624bc562b9abe70957cb28882d3c0b (diff)
parent31d1e1393ea6c96596b86c5d6af777fac0bb510d (diff)
Merge "Rename CONNECTED and NOT CONNECTED to IN SERVICE and OUT OF SERVICE" into main
-rw-r--r--telephony/java/android/telephony/satellite/stub/SatelliteModemState.aidl10
1 files changed, 5 insertions, 5 deletions
diff --git a/telephony/java/android/telephony/satellite/stub/SatelliteModemState.aidl b/telephony/java/android/telephony/satellite/stub/SatelliteModemState.aidl
index 162fe2b40104..24377c7a1470 100644
--- a/telephony/java/android/telephony/satellite/stub/SatelliteModemState.aidl
+++ b/telephony/java/android/telephony/satellite/stub/SatelliteModemState.aidl
@@ -22,7 +22,7 @@ package android.telephony.satellite.stub;
@Backing(type="int")
enum SatelliteModemState {
/**
- * Satellite modem is in idle state.
+ * Satellite Idle state during which modem will scan for TN networks.
*/
SATELLITE_MODEM_STATE_IDLE = 0,
/**
@@ -46,13 +46,13 @@ enum SatelliteModemState {
*/
SATELLITE_MODEM_STATE_UNAVAILABLE = 5,
/**
- * The satellite modem is powered on but the device is not registered to a satellite cell.
+ * The satellite modem is powered on but the device is out of service.
*/
- SATELLITE_MODEM_STATE_NOT_CONNECTED = 6,
+ SATELLITE_MODEM_STATE_OUT_OF_SERVICE = 6,
/**
- * The satellite modem is powered on and the device is registered to a satellite cell.
+ * The satellite modem is powered on and the device is registered and in service.
*/
- SATELLITE_MODEM_STATE_CONNECTED = 7,
+ SATELLITE_MODEM_STATE_IN_SERVICE = 7,
/**
* Satellite modem state is unknown. This generic modem state should be used only when the
* modem state cannot be mapped to other specific modem states.