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

  /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/
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...]

Completed in 169 milliseconds