Merge "Add back off timer configs as carrier config" into qt-qpr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
772358beb6
@@ -2768,18 +2768,44 @@ public class CarrierConfigManager {
|
|||||||
public static final String KEY_SWITCH_DATA_TO_PRIMARY_IF_PRIMARY_IS_OOS_BOOL =
|
public static final String KEY_SWITCH_DATA_TO_PRIMARY_IF_PRIMARY_IS_OOS_BOOL =
|
||||||
"switch_data_to_primary_if_primary_is_oos_bool";
|
"switch_data_to_primary_if_primary_is_oos_bool";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls the ping pong determination of opportunistic network.
|
||||||
|
* If opportunistic network is determined as out of service or below
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_EXIT_THRESHOLD_RSRP_INT or
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_EXIT_THRESHOLD_RSSNR_INT within
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_PING_PONG_TIME_LONG of switching to opportunistic network,
|
||||||
|
* it will be determined as ping pong situation by system app or 1st party app.
|
||||||
|
* @hide
|
||||||
|
*/
|
||||||
|
public static final String KEY_OPPORTUNISTIC_NETWORK_PING_PONG_TIME_LONG =
|
||||||
|
"opportunistic_network_ping_pong_time_long";
|
||||||
/**
|
/**
|
||||||
* Controls back off time in milli seconds for switching back to
|
* Controls back off time in milli seconds for switching back to
|
||||||
* opportunistic subscription. This time will be added to
|
* opportunistic subscription. This time will be added to
|
||||||
* {@link CarrierConfigManager#KEY_OPPORTUNISTIC_NETWORK_DATA_SWITCH_HYSTERESIS_TIME_LONG} to
|
* {@link CarrierConfigManager#KEY_OPPORTUNISTIC_NETWORK_DATA_SWITCH_HYSTERESIS_TIME_LONG} to
|
||||||
* determine hysteresis time if there is frequent switching
|
* determine hysteresis time if there is ping pong situation
|
||||||
* (determined by system app or 1st party app) between primary and opportunistic
|
* (determined by system app or 1st party app) between primary and opportunistic
|
||||||
* subscription.
|
* subscription. Ping ping situation is defined in
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_PING_PONG_TIME_LONG.
|
||||||
|
* If ping pong situation continuous #KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG
|
||||||
|
* will be added to previously determined hysteresis time.
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
public static final String KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG =
|
public static final String KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG =
|
||||||
"opportunistic_network_backoff_time_long";
|
"opportunistic_network_backoff_time_long";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls the max back off time in milli seconds for switching back to
|
||||||
|
* opportunistic subscription.
|
||||||
|
* This time will be the max hysteresis that can be determined irrespective of there is
|
||||||
|
* continuous ping pong situation or not as described in
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_PING_PONG_TIME_LONG and
|
||||||
|
* #KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG.
|
||||||
|
* @hide
|
||||||
|
*/
|
||||||
|
public static final String KEY_OPPORTUNISTIC_NETWORK_MAX_BACKOFF_TIME_LONG =
|
||||||
|
"opportunistic_network_max_backoff_time_long";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates zero or more emergency number prefix(es), because some carrier requires
|
* Indicates zero or more emergency number prefix(es), because some carrier requires
|
||||||
* if users dial an emergency number address with a specific prefix, the combination of the
|
* if users dial an emergency number address with a specific prefix, the combination of the
|
||||||
@@ -3551,8 +3577,12 @@ public class CarrierConfigManager {
|
|||||||
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_DATA_SWITCH_EXIT_HYSTERESIS_TIME_LONG, 3000);
|
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_DATA_SWITCH_EXIT_HYSTERESIS_TIME_LONG, 3000);
|
||||||
sDefaults.putBoolean(KEY_PING_TEST_BEFORE_DATA_SWITCH_BOOL, true);
|
sDefaults.putBoolean(KEY_PING_TEST_BEFORE_DATA_SWITCH_BOOL, true);
|
||||||
sDefaults.putBoolean(KEY_SWITCH_DATA_TO_PRIMARY_IF_PRIMARY_IS_OOS_BOOL, true);
|
sDefaults.putBoolean(KEY_SWITCH_DATA_TO_PRIMARY_IF_PRIMARY_IS_OOS_BOOL, true);
|
||||||
|
/* Default value is 60 seconds. */
|
||||||
|
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_PING_PONG_TIME_LONG, 60000);
|
||||||
/* Default value is 10 seconds. */
|
/* Default value is 10 seconds. */
|
||||||
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG, 10000);
|
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_BACKOFF_TIME_LONG, 10000);
|
||||||
|
/* Default value is 60 seconds. */
|
||||||
|
sDefaults.putLong(KEY_OPPORTUNISTIC_NETWORK_MAX_BACKOFF_TIME_LONG, 60000);
|
||||||
sDefaults.putAll(Gps.getDefaults());
|
sDefaults.putAll(Gps.getDefaults());
|
||||||
sDefaults.putAll(Wifi.getDefaults());
|
sDefaults.putAll(Wifi.getDefaults());
|
||||||
sDefaults.putIntArray(KEY_CDMA_ENHANCED_ROAMING_INDICATOR_FOR_HOME_NETWORK_INT_ARRAY,
|
sDefaults.putIntArray(KEY_CDMA_ENHANCED_ROAMING_INDICATOR_FOR_HOME_NETWORK_INT_ARRAY,
|
||||||
|
|||||||
Reference in New Issue
Block a user