commit | c1fd4e036b468c87dee7d929906d336205702c93 | [log] [tgz] |
---|---|---|
author | Thomas Nguyen <tnd@google.com> | Fri Apr 07 21:32:05 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 07 21:32:05 2023 +0000 |
tree | 749c6171970da470f97054a94ccbca8f3f3517b5 | |
parent | 0f9e09e824214ed502024844d62efb81e6d8be79 [diff] | |
parent | a19006fe9093e75b27646d4bb4f787331268da89 [diff] |
Merge "Add an API to update satellite listening timeout duration" into udc-dev am: 225c2e764e am: a19006fe90 Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22523625 Change-Id: I0a010aed515df41586cd60abe0859f591459cf81 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index cbdf38ae..ee9d6c1 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl
@@ -2989,4 +2989,14 @@ * {@code false} otherwise. */ boolean setSatelliteServicePackageName(in String servicePackageName); + + /** + * This API can be used by only CTS to update the timeout duration in milliseconds that + * satellite should stay at listening mode to wait for the next incoming page before disabling + * listening mode. + * + * @param timeoutMillis The timeout duration in millisecond. + * @return {@code true} if the timeout duration is set successfully, {@code false} otherwise. + */ + boolean setSatelliteListeningTimeoutDuration(in long timeoutMillis); }