Home
last modified time | relevance | path

Searched refs:ROVE_OUT (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Telephony/services/QualifiedNetworksService/src/com/android/telephony/qns/
DAnspImsPreferModePolicyBuilder.java38 new AnspKey(ROVE_OUT, IDLE, WIFI_PREF), in sImsPreferModePolicyMap.put() argument
43 new AnspKey(ROVE_OUT, VOICE, WIFI_PREF), in sImsPreferModePolicyMap.put() argument
48 new AnspKey(ROVE_OUT, VIDEO, WIFI_PREF), in sImsPreferModePolicyMap.put() argument
54 new AnspKey(ROVE_OUT, IDLE, CELL_PREF, ROAM), in sImsPreferModePolicyMap.put() argument
60 new AnspKey(ROVE_OUT, VOICE, CELL_PREF, ROAM), in sImsPreferModePolicyMap.put() argument
66 new AnspKey(ROVE_OUT, VIDEO, CELL_PREF, ROAM), in sImsPreferModePolicyMap.put() argument
77 new AnspKey(ROVE_OUT, IDLE, CELL_PREF, HOME), in sImsPreferModePolicyMap.put() argument
92 new AnspKey(ROVE_OUT, VOICE, CELL_PREF, HOME), in sImsPreferModePolicyMap.put() argument
107 new AnspKey(ROVE_OUT, VIDEO, CELL_PREF, HOME), in sImsPreferModePolicyMap.put() argument
DAccessNetworkSelectionPolicyBuilder.java43 static final int ROVE_OUT = QnsConstants.ROVE_OUT; field in AccessNetworkSelectionPolicyBuilder
62 sPolicyMap.put(new AnspKey(ROVE_OUT, WIFI_PREF), new String[] {"Condition:WIFI_BAD"}); in sPolicyMap.put() argument
66 new AnspKey(ROVE_OUT, CELL_PREF), in sPolicyMap.put() argument
98 && direction == QnsConstants.ROVE_OUT) { in getPolicy()
129 && direction == QnsConstants.ROVE_OUT) { in getPolicy()
140 && direction == QnsConstants.ROVE_OUT in getPolicy()
146 if (direction == QnsConstants.ROVE_OUT in getPolicy()
192 List<Integer> directionList = List.of(ROVE_IN, ROVE_OUT); in buildAnsp()
209 if (direction == ROVE_OUT && guarding == GUARDING_WIFI) { in buildAnsp()
481 if (threshold.mBad != QnsConfigArray.INVALID && direction == QnsConstants.ROVE_OUT) { in makeThresholdsWifiWithoutCellular()
DQnsConstants.java118 static final int ROVE_OUT = 0; field in QnsConstants
123 ROVE_OUT, ROVE_IN,
/packages/modules/Telephony/services/QualifiedNetworksService/tests/src/com/android/telephony/qns/
DAnspImsPreferModePolicyBuilderTest.java26 import static com.android.telephony.qns.QnsConstants.ROVE_OUT;
131 ROVE_OUT, in testGetPolicyInMap_rove_out()
138 ROVE_OUT, in testGetPolicyInMap_rove_out()
145 ROVE_OUT, in testGetPolicyInMap_rove_out()
152 ROVE_OUT, in testGetPolicyInMap_rove_out()
159 ROVE_OUT, in testGetPolicyInMap_rove_out()
166 ROVE_OUT, in testGetPolicyInMap_rove_out()
173 ROVE_OUT, in testGetPolicyInMap_rove_out()
183 ROVE_OUT, in testGetPolicyInMap_rove_out()
193 ROVE_OUT, in testGetPolicyInMap_rove_out()
DAccessNetworkSelectionPolicyBuilderTest.java61 static final int ROVE_OUT = QnsConstants.ROVE_OUT; field in AccessNetworkSelectionPolicyBuilderTest
267 conditions = getPolicy(ROVE_OUT, callType, WIFI_PREF, coverage); in test_PolicyMap_Default()
283 conditions = getPolicy(ROVE_OUT, callType, CELL_PREF, coverage); in test_PolicyMap_Default()
300 List<Integer> directionList = List.of(ROVE_IN, ROVE_OUT); in test_PolicyMap_isTransportTypeSelWithoutSSInRoamSupported()
308 if ((preference == CELL_PREF && direction == ROVE_OUT) in test_PolicyMap_isTransportTypeSelWithoutSSInRoamSupported()
332 conditions = getPolicy(ROVE_OUT, VOICE, CELL_PREF, coverage); in test_PolicyMap_isCurrentTransportTypeInVoiceCallSupported()
351 conditions = getPolicy(ROVE_OUT, callType, CELL_PREF, coverage); in test_PolicyMap_isRoveOutOnCellularWifiBothBadSupported()
404 List<Integer> directionList = List.of(ROVE_IN, ROVE_OUT); in test_PolicyMap_allowImsOverIwlanCellularLimitedCase()
638 QnsConstants.ROVE_OUT, in testAddThresholdGroup_RoveOut()
669 QnsConstants.ROVE_OUT, in testAddThresholdGroup_RoveOut()
[all …]
DQnsConstantsTest.java80 direction_str = QnsConstants.directionToString(QnsConstants.ROVE_OUT); in testDirectionToString()