diff options
author | 2025-02-28 09:13:01 -0800 | |
---|---|---|
committer | 2025-02-28 09:53:27 -0800 | |
commit | cbd14793f0f0a29ab20eced94bf015be6cf8ee78 (patch) | |
tree | 4ecd6a791d55513dd56ce286c42651fcb0a7a7ae /telephony | |
parent | 739bb97f1287a84f33533a5e64e1db682aa8cd90 (diff) |
Add satellite APIs for CTS tests
- Set SatelliteAccessAllowedForSubscriptions
- SetSatelliteTnScanningSupport
Change-Id: Idecf110d706300c084f218587965dc98df002be2
Flag: EXEMPT bugfix
Bug: 397980611
Test: System test and SatelliteManagerTestOnMockService
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 1c6652daf498..0dd0a42d44b4 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -3203,6 +3203,31 @@ interface ITelephony { in List<String> satelliteCountryCodes, String satelliteAccessConfigurationFile); /** + * This API can be used by only CTS to override the satellite access allowed state for + * a list of subscription IDs. + * + * @param subIdListStr The string representation of the list of subscription IDs, + * which are numbers separated by comma. + * @return {@code true} if the satellite access allowed state is set successfully, + * {@code false} otherwise. + */ + boolean setSatelliteAccessAllowedForSubscriptions(in String subIdListStr); + + /** + * This API can be used by only CTS to override satellite TN scanning support. + * + * @param reset {@code true} mean the overridden configs should not be used, {@code false} + * otherwise. + * @param concurrentTnScanningSupported Whether concurrent TN scanning is supported. + * @param tnScanningDuringSatelliteSessionAllowed Whether TN scanning is allowed during + * a satellite session. + * @return {@code true} if the TN scanning support is set successfully, + * {@code false} otherwise. + */ + boolean setTnScanningSupport(in boolean reset, in boolean concurrentTnScanningSupported, + in boolean tnScanningDuringSatelliteSessionAllowed); + + /** * This API can be used in only testing to override oem-enabled satellite provision status. * * @param reset {@code true} mean the overriding status should not be used, {@code false} |