/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
OperatorInfo.java | 62 String operatorNumeric, 67 mOperatorNumeric = operatorNumeric; 75 String operatorNumeric, 78 operatorNumeric, rilStateToState(stateString)); 144 in.readString(), /*operatorNumeric*/
|
ServiceStateTracker.java | 701 * @param operatorNumeric 706 protected boolean shouldFixTimeZoneNow(PhoneBase phoneBase, String operatorNumeric, 716 mcc = Integer.parseInt(operatorNumeric.substring(0, 3)); 719 log("shouldFixTimeZoneNow: no mcc, operatorNumeric=" + operatorNumeric + 746 " operatorNumeric=" + operatorNumeric + " mcc=" + mcc + [all...] |
PhoneBase.java | 165 * the carrier selection process. operatorNumeric can be "" 171 public String operatorNumeric; 820 nsm.operatorNumeric = ""; 833 nsm.operatorNumeric = network.getOperatorNumeric(); 861 // nsm.operatorNumeric is "" if we're in automatic.selection. 864 editor.putString(NETWORK_SELECTION_KEY, nsm.operatorNumeric); [all...] |
CommandsInterface.java | [all...] |
RIL.java | [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CDMALTEPhone.java | 189 boolean updateCurrentCarrierInProvider(String operatorNumeric) { 193 retVal = super.updateCurrentCarrierInProvider(operatorNumeric); 205 String operatorNumeric = getOperatorNumeric(); 208 + " currentDds = " + currentDds + " operatorNumeric = " + operatorNumeric); 210 if (!TextUtils.isEmpty(operatorNumeric) && (getSubId() == currentDds)) { 214 map.put(Telephony.Carriers.NUMERIC, operatorNumeric); 362 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC); 363 log("update icc_operator_numeric=" + operatorNumeric); 364 if (!TextUtils.isEmpty(operatorNumeric)) { [all...] |
CdmaLteServiceStateTracker.java | 168 String operatorNumeric = null; 171 operatorNumeric = mNewSS.getOperatorNumeric(); 172 mcc = Integer.parseInt(operatorNumeric.substring(0,3)); 175 operatorNumeric = mSS.getOperatorNumeric(); 176 mcc = Integer.parseInt(operatorNumeric.substring(0,3)); 178 loge("handlePollStateResultMessage: bad mcc operatorNumeric=" + 179 operatorNumeric + " ex=" + ex); 180 operatorNumeric = ""; 185 mnc = Integer.parseInt(operatorNumeric.substring(3)); 187 loge("handlePollStateResultMessage: bad mnc operatorNumeric=" [all...] |
CdmaServiceStateTracker.java | [all...] |
CDMAPhone.java | 212 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC); 214 + "' operatorNumeric='" + operatorNumeric + "'"); 221 if (!TextUtils.isEmpty(operatorNumeric)) { 222 log("init: set 'gsm.sim.operator.numeric' to operator='" + operatorNumeric + "'"); 223 log("update icc_operator_numeric=" + operatorNumeric); 224 setSystemProperty(PROPERTY_ICC_OPERATOR_NUMERIC, operatorNumeric); 226 SubscriptionController.getInstance().setMccMnc(operatorNumeric, getSubId()); 228 setIsoCountryProperty(operatorNumeric); 232 updateCurrentCarrierInProvider(operatorNumeric); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
RuimRecords.java | 503 String operatorNumeric = getRUIMOperatorNumeric(); 504 if (operatorNumeric != null) { 505 if (operatorNumeric.length() <= 6) { 506 log("update mccmnc=" + operatorNumeric); 507 MccTable.updateMccMncConfiguration(mContext, operatorNumeric, false); 511 String operatorNumeric = getRUIMOperatorNumeric(); 512 log("NO update mccmnc=" + operatorNumeric);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmServiceStateTracker.java | [all...] |
GSMPhone.java | [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
ImsPhoneCommandInterface.java | 321 String operatorNumeric, Message response) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipCommandInterface.java | 323 String operatorNumeric, Message response) {
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
UsimDataDownloadCommands.java | 435 public void setNetworkSelectionModeManual(String operatorNumeric, Message response) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
SimulatedCommands.java | [all...] |