diff options
author | James.cf Lin <jamescflin@google.com> | 2021-05-25 01:29:38 +0800 |
---|---|---|
committer | James.cf Lin <jamescflin@google.com> | 2021-05-25 01:29:38 +0800 |
commit | d0d7f63b203e1d12cd026891484df23830d8aefe (patch) | |
tree | 254bedadb412e80049a3f05ab71bcbf4aa1a2382 /telephony/java | |
parent | 75dc1f16e3637b9045ee047d5bf7ab15565b5d21 (diff) |
Add API for SHELL command to set the capabilities request timeout.
Bug: 188440601
Test: atest ImsServiceTest RcsUceAdapterTest
Change-Id: I4df957c97430758c6c84a06601070c3c3e3934e1
Diffstat (limited to 'telephony/java')
-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. */ |