HomeSort by relevance Sort by last modified time
    Searched defs:operatorNumeric (Results 1 - 7 of 7) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 61 * the carrier selection process. operatorNumeric can be ""
67 public String operatorNumeric;
154 nsm.operatorNumeric = network.getOperatorNumeric();
185 // nsm.operatorNumeric is "" if we're in automatic.selection.
188 editor.putString(NETWORK_SELECTION_KEY, nsm.operatorNumeric);
206 boolean updateCurrentCarrierInProvider(String operatorNumeric) {
210 retVal = super.updateCurrentCarrierInProvider(operatorNumeric);
225 String operatorNumeric = mSimRecords.getOperatorNumeric();
226 map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
228 operatorNumeric);
    [all...]
CdmaLteServiceStateTracker.java 136 String operatorNumeric = null;
139 operatorNumeric = mNewSS.getOperatorNumeric();
140 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
143 operatorNumeric = mSS.getOperatorNumeric();
144 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
146 loge("handlePollStateResultMessage: bad mcc operatorNumeric=" +
147 operatorNumeric + " ex=" + ex);
148 operatorNumeric = "";
153 mnc = Integer.parseInt(operatorNumeric.substring(3));
155 loge("handlePollStateResultMessage: bad mnc operatorNumeric="
    [all...]
CdmaServiceStateTracker.java     [all...]
CDMAPhone.java 200 String operatorNumeric = SystemProperties.get(PROPERTY_CDMA_HOME_OPERATOR_NUMERIC);
202 + "' operatorNumeric='" + operatorNumeric + "'");
209 if (!TextUtils.isEmpty(operatorNumeric)) {
210 log("init: set 'gsm.sim.operator.numeric' to operator='" + operatorNumeric + "'");
211 setSystemProperty(PROPERTY_ICC_OPERATOR_NUMERIC, operatorNumeric);
213 setIsoCountryProperty(operatorNumeric);
217 updateCurrentCarrierInProvider(operatorNumeric);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 483 String operatorNumeric = getRUIMOperatorNumeric();
484 if (operatorNumeric != null) {
485 if(operatorNumeric.length() <= 6){
486 MccTable.updateMccMncConfiguration(mContext, operatorNumeric, false);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java     [all...]
GSMPhone.java     [all...]

Completed in 218 milliseconds