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

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DOperatorInfo.java62 String operatorNumeric,
67 mOperatorNumeric = operatorNumeric;
75 String operatorNumeric,
78 operatorNumeric, rilStateToState(stateString));
83 String operatorNumeric) {
84 this(operatorAlphaLong, operatorAlphaShort, operatorNumeric, State.UNKNOWN);
150 in.readString(), /*operatorNumeric*/
60 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, State state) argument
73 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, String stateString) argument
81 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java193 boolean updateCurrentCarrierInProvider(String operatorNumeric) { argument
197 retVal = super.updateCurrentCarrierInProvider(operatorNumeric);
209 String operatorNumeric = getOperatorNumeric();
212 + " currentDds = " + currentDds + " operatorNumeric = " + operatorNumeric);
214 if (!TextUtils.isEmpty(operatorNumeric) && (getSubId() == currentDds)) {
218 map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
356 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC);
357 log("update icc_operator_numeric=" + operatorNumeric);
358 if (!TextUtils.isEmpty(operatorNumeric)) {
[all...]
H A DCdmaLteServiceStateTracker.java183 String operatorNumeric = null;
186 operatorNumeric = mNewSS.getOperatorNumeric();
187 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
190 operatorNumeric = mSS.getOperatorNumeric();
191 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
193 loge("handlePollStateResultMessage: bad mcc operatorNumeric=" +
194 operatorNumeric + " ex=" + ex);
195 operatorNumeric = "";
200 mnc = Integer.parseInt(operatorNumeric.substring(3));
202 loge("handlePollStateResultMessage: bad mnc operatorNumeric
[all...]
H A DCdmaServiceStateTracker.java1271 String operatorNumeric;
1276 operatorNumeric = mSS.getOperatorNumeric();
1279 if (isInvalidOperatorNumeric(operatorNumeric)) {
1281 operatorNumeric = fixUnknownMcc(operatorNumeric, sid);
1284 tm.setNetworkOperatorNumericForPhone(mPhone.getPhoneId(), operatorNumeric);
1285 updateCarrierMccMncConfiguration(operatorNumeric,
1288 if (isInvalidOperatorNumeric(operatorNumeric)) {
1289 if (DBG) log("operatorNumeric "+ operatorNumeric
1365 isInvalidOperatorNumeric(String operatorNumeric) argument
1370 fixUnknownMcc(String operatorNumeric, int sid) argument
1401 setOperatorIdd(String operatorNumeric) argument
[all...]
H A DCDMAPhone.java196 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC);
198 + "' operatorNumeric='" + operatorNumeric + "'");
205 if (!TextUtils.isEmpty(operatorNumeric)) {
206 log("init: set 'gsm.sim.operator.numeric' to operator='" + operatorNumeric + "'");
207 log("update icc_operator_numeric=" + operatorNumeric);
208 tm.setSimOperatorNumericForPhone(mPhoneId, operatorNumeric);
210 SubscriptionController.getInstance().setMccMnc(operatorNumeric, getSubId());
212 setIsoCountryProperty(operatorNumeric);
216 updateCurrentCarrierInProvider(operatorNumeric);
1703 setIsoCountryProperty(String operatorNumeric) argument
1730 updateCurrentCarrierInProvider(String operatorNumeric) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java1154 String operatorNumeric;
1161 operatorNumeric = mSS.getOperatorNumeric();
1162 tm.setNetworkOperatorNumericForPhone(mPhone.getPhoneId(), operatorNumeric);
1163 updateCarrierMccMncConfiguration(operatorNumeric,
1165 if (operatorNumeric == null) {
1166 if (DBG) log("operatorNumeric is null");
1174 mcc = operatorNumeric.substring(0, 3);
1214 if (shouldFixTimeZoneNow(mPhone, operatorNumeric, prevOperatorNumeric,
1570 String operatorNumeric = s.getOperatorNumeric();
1575 equals(operatorNumeric
[all...]
H A DGSMPhone.java1697 String operatorNumeric = getOperatorNumeric();
1700 + " currentDds = " + currentDds + " operatorNumeric = " + operatorNumeric);
1702 if (!TextUtils.isEmpty(operatorNumeric) && (getSubId() == currentDds)) {
1706 map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
1933 String operatorNumeric = null;
1936 operatorNumeric = r.getOperatorNumeric();
1938 return operatorNumeric;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java872 * @param operatorNumeric
877 protected boolean shouldFixTimeZoneNow(PhoneBase phoneBase, String operatorNumeric, argument
887 mcc = Integer.parseInt(operatorNumeric.substring(0, 3));
890 log("shouldFixTimeZoneNow: no mcc, operatorNumeric=" + operatorNumeric +
917 " operatorNumeric=" + operatorNumeric + " mcc=" + mcc +
1033 protected boolean inSameCountry(String operatorNumeric) { argument
1034 if (TextUtils.isEmpty(operatorNumeric) || (operatorNumeric
[all...]
H A DPhoneBase.java197 * the carrier selection process. operatorNumeric can be ""
203 public String operatorNumeric; field in class:PhoneBase.NetworkSelectMessage
1005 nsm.operatorNumeric = "";
1029 nsm.operatorNumeric = network.getOperatorNumeric();
1060 // nsm.operatorNumeric is "" if we're in automatic.selection.
1063 editor.putString(NETWORK_SELECTION_KEY + subId, nsm.operatorNumeric);
H A DCommandsInterface.java1264 void setNetworkSelectionModeManual(String operatorNumeric, Message response); argument
H A DRIL.java1744 setNetworkSelectionModeManual(String operatorNumeric, Message response) { argument
1750 + " " + operatorNumeric);
1752 rr.mParcel.writeString(operatorNumeric);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DRuimRecords.java632 String operatorNumeric = getRUIMOperatorNumeric();
633 if (operatorNumeric != null) {
634 if (operatorNumeric.length() <= 6) {
635 log("update mccmnc=" + operatorNumeric);
636 MccTable.updateMccMncConfiguration(mContext, operatorNumeric, false);
640 String operatorNumeric = getRUIMOperatorNumeric();
641 log("NO update mccmnc=" + operatorNumeric);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java322 String operatorNumeric, Message response) {
321 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java323 String operatorNumeric, Message response) {
322 setNetworkSelectionModeManual( String operatorNumeric, Message response) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken435 public void setNetworkSelectionModeManual(String operatorNumeric, Message response) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1239 String operatorNumeric, Message result) {unimplemented(result);}
1238 setNetworkSelectionModeManual( String operatorNumeric, Message result) argument

Completed in 414 milliseconds