Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a36ada4b authored by Eric Schwarzenbach's avatar Eric Schwarzenbach Committed by Gerrit Code Review
Browse files

Merge "Add constants for reporting criteria"

parents 4b8285b9 7ff6e14c
Loading
Loading
Loading
Loading
+15 −1
Original line number Diff line number Diff line
@@ -7730,11 +7730,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{}
+2 −0
Original line number Diff line number Diff line
@@ -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;