diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-03-29 00:23:37 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-03-29 00:23:37 +0000 |
commit | a210ef268756b80c4d09ee716d4a07c2e63bf75f (patch) | |
tree | b5f27b181c7787f68c6bd6af0b65895ca6712990 | |
parent | b0558905c5a842f292fbf860ae6a6c2cbb9f6ddd (diff) | |
parent | 702f0a8ce669f62964bdd2f733fd04061b93fc5f (diff) |
Merge "Add constants for reporting criteria" into pi-dev
-rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 16 | ||||
-rw-r--r-- | telephony/java/com/android/internal/telephony/RILConstants.java | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index da5bd84f9083..15e06321206a 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -7752,11 +7752,25 @@ public class TelephonyManager { */ public static final int INDICATION_FILTER_DATA_CALL_DORMANCY_CHANGED = 0x4; + /** + * The indication for link capacity estimate update. + * @hide + */ + public static final int INDICATION_FILTER_LINK_CAPACITY_ESTIMATE = 0x8; + + /** + * The indication for physical channel config update. + * @hide + */ + public static final int INDICATION_FILTER_PHYSICAL_CHANNEL_CONFIG = 0x10; + /** @hide */ @IntDef(flag = true, prefix = { "INDICATION_FILTER_" }, value = { INDICATION_FILTER_SIGNAL_STRENGTH, INDICATION_FILTER_FULL_NETWORK_STATE, - INDICATION_FILTER_DATA_CALL_DORMANCY_CHANGED + INDICATION_FILTER_DATA_CALL_DORMANCY_CHANGED, + INDICATION_FILTER_LINK_CAPACITY_ESTIMATE, + INDICATION_FILTER_PHYSICAL_CHANNEL_CONFIG }) @Retention(RetentionPolicy.SOURCE) public @interface IndicationFilters{} diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index ee7084ad86c0..d25fd3fdf60c 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -419,6 +419,8 @@ cat include/telephony/ril.h | \ int RIL_REQUEST_SET_LOGICAL_TO_PHYSICAL_SLOT_MAPPING = 145; int RIL_REQUEST_START_KEEPALIVE = 146; int RIL_REQUEST_STOP_KEEPALIVE = 147; + int RIL_REQUEST_SET_SIGNAL_STRENGTH_REPORTING_CRITERIA = 148; + int RIL_REQUEST_SET_LINK_CAPACITY_REPORTING_CRITERIA = 149; int RIL_RESPONSE_ACKNOWLEDGEMENT = 800; |