Home
last modified time | relevance | path

Searched refs:operatorNumeric (Results 1 – 16 of 16) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCDMALTEPhone.java193 boolean updateCurrentCarrierInProvider(String operatorNumeric) { in updateCurrentCarrierInProvider() argument
197 retVal = super.updateCurrentCarrierInProvider(operatorNumeric); in updateCurrentCarrierInProvider()
209 String operatorNumeric = getOperatorNumeric(); in updateCurrentCarrierInProvider() local
212 + " currentDds = " + currentDds + " operatorNumeric = " + operatorNumeric); in updateCurrentCarrierInProvider()
214 if (!TextUtils.isEmpty(operatorNumeric) && (getSubId() == currentDds)) { in updateCurrentCarrierInProvider()
218 map.put(Telephony.Carriers.NUMERIC, operatorNumeric); in updateCurrentCarrierInProvider()
356 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC); in setProperties() local
357 log("update icc_operator_numeric=" + operatorNumeric); in setProperties()
358 if (!TextUtils.isEmpty(operatorNumeric)) { in setProperties()
359 tm.setSimOperatorNumericForPhone(getPhoneId(), operatorNumeric); in setProperties() local
[all …]
DCdmaLteServiceStateTracker.java183 String operatorNumeric = null; in handlePollStateResultMessage() local
186 operatorNumeric = mNewSS.getOperatorNumeric(); in handlePollStateResultMessage()
187 mcc = Integer.parseInt(operatorNumeric.substring(0,3)); in handlePollStateResultMessage()
190 operatorNumeric = mSS.getOperatorNumeric(); in handlePollStateResultMessage()
191 mcc = Integer.parseInt(operatorNumeric.substring(0,3)); in handlePollStateResultMessage()
194 operatorNumeric + " ex=" + ex); in handlePollStateResultMessage()
195 operatorNumeric = ""; in handlePollStateResultMessage()
200 mnc = Integer.parseInt(operatorNumeric.substring(3)); in handlePollStateResultMessage()
203 operatorNumeric + " e=" + e); in handlePollStateResultMessage()
479 String operatorNumeric; in pollStateDone() local
[all …]
DCdmaServiceStateTracker.java1271 String operatorNumeric; in pollStateDone() local
1276 operatorNumeric = mSS.getOperatorNumeric(); in pollStateDone()
1279 if (isInvalidOperatorNumeric(operatorNumeric)) { in pollStateDone()
1281 operatorNumeric = fixUnknownMcc(operatorNumeric, sid); in pollStateDone()
1284 tm.setNetworkOperatorNumericForPhone(mPhone.getPhoneId(), operatorNumeric); in pollStateDone() local
1285 updateCarrierMccMncConfiguration(operatorNumeric, in pollStateDone()
1288 if (isInvalidOperatorNumeric(operatorNumeric)) { in pollStateDone()
1289 if (DBG) log("operatorNumeric "+ operatorNumeric +"is invalid"); in pollStateDone()
1294 String mcc = operatorNumeric.substring(0, 3); in pollStateDone()
1297 operatorNumeric.substring(0,3))); in pollStateDone()
[all …]
DCDMAPhone.java196 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC); in init() local
198 + "' operatorNumeric='" + operatorNumeric + "'"); in init()
205 if (!TextUtils.isEmpty(operatorNumeric)) { in init()
206 log("init: set 'gsm.sim.operator.numeric' to operator='" + operatorNumeric + "'"); in init()
207 log("update icc_operator_numeric=" + operatorNumeric); in init()
208 tm.setSimOperatorNumericForPhone(mPhoneId, operatorNumeric); in init()
210 SubscriptionController.getInstance().setMccMnc(operatorNumeric, getSubId()); in init()
212 setIsoCountryProperty(operatorNumeric); in init()
216 updateCurrentCarrierInProvider(operatorNumeric); in init()
1703 protected void setIsoCountryProperty(String operatorNumeric) { in setIsoCountryProperty() argument
[all …]
/frameworks/base/telephony/java/com/android/internal/telephony/
DOperatorInfo.java62 String operatorNumeric, in OperatorInfo() argument
67 mOperatorNumeric = operatorNumeric; in OperatorInfo()
75 String operatorNumeric, in OperatorInfo() argument
78 operatorNumeric, rilStateToState(stateString)); in OperatorInfo()
83 String operatorNumeric) { in OperatorInfo() argument
84 this(operatorAlphaLong, operatorAlphaShort, operatorNumeric, State.UNKNOWN); in OperatorInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DRuimRecords.java632 String operatorNumeric = getRUIMOperatorNumeric(); in handleMessage() local
633 if (operatorNumeric != null) { in handleMessage()
634 if (operatorNumeric.length() <= 6) { in handleMessage()
635 log("update mccmnc=" + operatorNumeric); in handleMessage()
636 MccTable.updateMccMncConfiguration(mContext, operatorNumeric, false); in handleMessage()
640 String operatorNumeric = getRUIMOperatorNumeric(); in handleMessage() local
641 log("NO update mccmnc=" + operatorNumeric); in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java877 protected boolean shouldFixTimeZoneNow(PhoneBase phoneBase, String operatorNumeric, in shouldFixTimeZoneNow() argument
887 mcc = Integer.parseInt(operatorNumeric.substring(0, 3)); in shouldFixTimeZoneNow()
890 log("shouldFixTimeZoneNow: no mcc, operatorNumeric=" + operatorNumeric + in shouldFixTimeZoneNow()
917 " operatorNumeric=" + operatorNumeric + " mcc=" + mcc + in shouldFixTimeZoneNow()
1033 protected boolean inSameCountry(String operatorNumeric) { in inSameCountry() argument
1034 if (TextUtils.isEmpty(operatorNumeric) || (operatorNumeric.length() < 5)) { in inSameCountry()
1044 final String networkMCC = operatorNumeric.substring(0, 3); in inSameCountry()
DPhoneBase.java203 public String operatorNumeric; field in PhoneBase.NetworkSelectMessage
1005 nsm.operatorNumeric = ""; in onCheckForNetworkSelectionModeAutomatic()
1029 nsm.operatorNumeric = network.getOperatorNumeric(); in selectNetworkManually()
1063 editor.putString(NETWORK_SELECTION_KEY + subId, nsm.operatorNumeric); in updateSavedNetworkOperator()
DCommandsInterface.java1264 void setNetworkSelectionModeManual(String operatorNumeric, Message response); in setNetworkSelectionModeManual() argument
DRIL.java1744 setNetworkSelectionModeManual(String operatorNumeric, Message response) { in setNetworkSelectionModeManual() argument
1750 + " " + operatorNumeric); in setNetworkSelectionModeManual()
1752 rr.mParcel.writeString(operatorNumeric); in setNetworkSelectionModeManual()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmServiceStateTracker.java1154 String operatorNumeric; in pollStateDone() local
1161 operatorNumeric = mSS.getOperatorNumeric(); in pollStateDone()
1162 tm.setNetworkOperatorNumericForPhone(mPhone.getPhoneId(), operatorNumeric); in pollStateDone() local
1163 updateCarrierMccMncConfiguration(operatorNumeric, in pollStateDone()
1165 if (operatorNumeric == null) { in pollStateDone()
1174 mcc = operatorNumeric.substring(0, 3); in pollStateDone()
1214 if (shouldFixTimeZoneNow(mPhone, operatorNumeric, prevOperatorNumeric, in pollStateDone()
1570 String operatorNumeric = s.getOperatorNumeric(); in currentMccEqualsSimMcc() local
1575 equals(operatorNumeric.substring(0, 3)); in currentMccEqualsSimMcc()
1592 String operatorNumeric = s.getOperatorNumeric(); in isOperatorConsideredNonRoaming() local
[all …]
DGSMPhone.java1697 String operatorNumeric = getOperatorNumeric(); in updateCurrentCarrierInProvider() local
1700 + " currentDds = " + currentDds + " operatorNumeric = " + operatorNumeric); in updateCurrentCarrierInProvider()
1702 if (!TextUtils.isEmpty(operatorNumeric) && (getSubId() == currentDds)) { in updateCurrentCarrierInProvider()
1706 map.put(Telephony.Carriers.NUMERIC, operatorNumeric); in updateCurrentCarrierInProvider()
1933 String operatorNumeric = null; in getOperatorNumeric() local
1936 operatorNumeric = r.getOperatorNumeric(); in getOperatorNumeric()
1938 return operatorNumeric; in getOperatorNumeric()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java323 String operatorNumeric, Message response) { in setNetworkSelectionModeManual() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java322 String operatorNumeric, Message response) { in setNetworkSelectionModeManual() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DUsimDataDownloadCommands.java.broken435 public void setNetworkSelectionModeManual(String operatorNumeric, Message response) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java1239 String operatorNumeric, Message result) {unimplemented(result);} in setNetworkSelectionModeManual() argument