summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-05-08 17:34:45 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-05-08 17:34:45 +0000
commit993a7d5e1eb9b9b69f0e5534198438435efd6a0a (patch)
tree9ef22fc15d6d246e915e789fcb82bf84d47686fc
parentd3aaa4e008d8cace5bd293a22f16ee172674c665 (diff)
parentf8e5aec2a985905080a68143a611a1cabcbf1ca6 (diff)
downloadgsma_services-android14-d2-s5-release.tar.gz
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/libs/gsma_services/+/23042956 Change-Id: Ie1cf10791e23b20dff3fcf4743f363087ee48ab6 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--satellite_client/src/android/telephony/satellite/wrapper/SatelliteManagerWrapper.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/satellite_client/src/android/telephony/satellite/wrapper/SatelliteManagerWrapper.java b/satellite_client/src/android/telephony/satellite/wrapper/SatelliteManagerWrapper.java
index 9e4bc49..b13a0fc 100644
--- a/satellite_client/src/android/telephony/satellite/wrapper/SatelliteManagerWrapper.java
+++ b/satellite_client/src/android/telephony/satellite/wrapper/SatelliteManagerWrapper.java
@@ -287,6 +287,10 @@ public class SatelliteManagerWrapper {
public static final int SATELLITE_NOT_AUTHORIZED = 19;
/** The device does not support satellite. */
public static final int SATELLITE_NOT_SUPPORTED = 20;
+ /** The current request is already in-progress. */
+ public static final int SATELLITE_REQUEST_IN_PROGRESS = 21;
+ /** Satellite modem is currently busy due to which current request cannot be processed. */
+ public static final int SATELLITE_MODEM_BUSY = 22;
/** @hide */
@IntDef(
@@ -312,7 +316,9 @@ public class SatelliteManagerWrapper {
SATELLITE_NETWORK_TIMEOUT,
SATELLITE_NOT_REACHABLE,
SATELLITE_NOT_AUTHORIZED,
- SATELLITE_NOT_SUPPORTED
+ SATELLITE_NOT_SUPPORTED,
+ SATELLITE_REQUEST_IN_PROGRESS,
+ SATELLITE_MODEM_BUSY
})
@Retention(RetentionPolicy.SOURCE)
public @interface SatelliteError {}