diff options
author | 2024-01-20 05:23:37 +0000 | |
---|---|---|
committer | 2024-01-20 05:23:37 +0000 | |
commit | 4a412a38f73dfaf70750be9432c70cb47a866f7b (patch) | |
tree | 7e20d3f6cddabb24c276e1b064d595640dc3dc05 | |
parent | 9a21416fb4b1531dbba8d662381490365172dc01 (diff) | |
parent | fbdb33041c7cb85354cf5e29f78ed4b7e04e9d5a (diff) |
Merge "Add a test API to override satellite provision status" into main
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index acbf354bb4de..24296f4d9031 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -3078,6 +3078,16 @@ interface ITelephony { in List<String> satelliteCountryCodes); /** + * 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} + * otherwise. + * @param isProvisioned The overriding provision status. + * @return {@code true} if the provision status is set successfully, {@code false} otherwise. + */ + boolean setOemEnabledSatelliteProvisionStatus(in boolean reset, in boolean isProvisioned); + + /** * Test method to confirm the file contents are not altered. */ @JavaPassthrough(annotation="@android.annotation.RequiresPermission(" |