diff options
author | James Lin <jamescflin@google.com> | 2021-05-27 02:31:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-05-27 02:31:25 +0000 |
commit | f2dba2bc84ae66f51c282d40e186053c89f39f3d (patch) | |
tree | 7f9dc8a660f468e9cb303214d286c7cda8849d15 | |
parent | 7f0bca668592016fd6f88ff92eb23a4e061d85b0 (diff) | |
parent | d0d7f63b203e1d12cd026891484df23830d8aefe (diff) |
Merge "Add API for SHELL command to set the capabilities request timeout." into sc-dev
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 91ecbf081919..a096c1f3b8b2 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2440,6 +2440,12 @@ interface ITelephony { boolean removeUceRequestDisallowedStatus(int subId); /** + * Set the timeout for contact capabilities request. + * Note: This is designed for a SHELL command only. + */ + boolean setCapabilitiesRequestTimeout(int subId, long timeoutAfterMs); + + /** * Set a SignalStrengthUpdateRequest to receive notification when Signal Strength breach the * specified thresholds. */ |