diff options
| author | 2021-05-25 01:29:38 +0800 | |
|---|---|---|
| committer | 2021-05-27 22:09:52 +0800 | |
| commit | 932bf1a357a354e62762d0d65e8e4cec58f266ea (patch) | |
| tree | 5bcd0c1335fcf154432774bf81dd518c53d4c9fb | |
| parent | a4afdf092f03fe54b3cad12f281329ac2edc7bb2 (diff) | |
Add API for SHELL command to set the capabilities request timeout.
Bug: 188440601
Test: atest ImsServiceTest RcsUceAdapterTest
Merged-In: I4df957c97430758c6c84a06601070c3c3e3934e1
Change-Id: I4df957c97430758c6c84a06601070c3c3e3934e1
| -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 3c55b7c8dbd6..d7299fd4d849 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2404,6 +2404,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. */ |