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 193 boolean updateCurrentCarrierInProvider(String operatorNumeric) {
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...]
CdmaLteServiceStateTracker.java 183 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...]
CDMAPhone.java 196 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);
    [all...]
CdmaServiceStateTracker.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 632 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);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java     [all...]
GsmServiceStateTracker.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 197 * the carrier selection process. operatorNumeric can be ""
203 public String operatorNumeric;
    [all...]

Completed in 1291 milliseconds