HomeSort by relevance Sort by last modified time
    Searched refs:mcc (Results 1 - 25 of 64) sorted by null

1 2 3

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MccTable.java 49 int mcc; field in class:MccTable.MccEntry
59 this.mcc = mnc;
68 return mcc - o.mcc;
73 entryForMcc(int mcc)
79 m = new MccEntry(mcc, null, 0);
91 * Returns a default time zone ID for the given MCC.
92 * @param mcc Mobile Country Code
95 public static String defaultTimeZoneForMcc(int mcc) {
98 entry = entryForMcc(mcc);
177 int mcc, mnc; local
    [all...]
ServiceStateTracker.java 553 // Return false if the mcc isn't valid as we don't know where we are.
554 // Return true if we have an IccCard and the mcc changed or we
558 // If mcc is invalid then we'll return false
559 int mcc; local
561 mcc = Integer.parseInt(operatorNumeric.substring(0, 3));
564 log("shouldFixTimeZoneNow: no mcc, operatorNumeric=" + operatorNumeric +
570 // If prevMcc is invalid will make it different from mcc
576 prevMcc = mcc + 1;
586 boolean retVal = ((iccCardExist && (mcc != prevMcc)) || needToFixTimeZone);
591 " operatorNumeric=" + operatorNumeric + " mcc=" + mcc
    [all...]
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 29 jfieldID mcc; member in struct:android::__anon18174
48 out->mcc = env->GetIntField(clazz, gConfigurationClassInfo.mcc);
95 GET_FIELD_ID(gConfigurationClassInfo.mcc, clazz,
96 "mcc", "I");
  /frameworks/base/core/java/android/content/res/
Configuration.java 48 * IMSI MCC (Mobile Country Code), corresponding to
49 * <a href="{@docRoot}guide/topics/resources/providing-resources.html#MccQualifier">mcc</a>
52 public int mcc; field in class:Configuration
558 mcc = o.mcc;
588 if (mcc != 0) {
589 sb.append(mcc);
590 sb.append("mcc");
592 sb.append("?mcc");
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.java 55 * @param mcc 3-digit Mobile Country Code, 0..999
63 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int psc) {
64 mMcc = mcc;
CellIdentityLte.java 55 * @param mcc 3-digit Mobile Country Code, 0..999
63 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) {
64 mMcc = mcc;
  /development/apps/Development/src/com/android/development/
ConfigurationViewer.java 45 + "mcc=" + c.mcc + "\n"
  /development/tools/findunused/
findunusedtranslations 31 if ($values =~ /^(-mcc[^-]*)*(-mnc[^-]*)*(.*)$/) {
  /frameworks/base/native/android/
configuration.cpp 45 return config->mcc;
133 void AConfiguration_setMcc(AConfiguration* config, int32_t mcc) {
134 config->mcc = mcc;
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 42 mConfig.mcc = mConfig.mnc = 1;
124 cfg1.mcc = 2;
125 cfg2.mcc = 3;
127 cfg1.mcc = 3;
128 cfg2.mcc = 2;
152 config.mcc = 1;
355 config.mcc = 0;
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 108 Telephony.Carriers.MCC, // 9
253 // MCC is first 3 chars and then in 2 - 3 chars of MNC
256 String mcc = numeric.substring(0, 3); local
259 // Auto populate MNC and MCC for new entries, based on what SIM reports
260 mMcc.setText(mcc);
263 mCurMcc = mcc;
449 String mcc = checkNotSet(mMcc.getText()); local
495 values.put(Telephony.Carriers.MCC, mcc);
498 values.put(Telephony.Carriers.NUMERIC, mcc + mnc)
521 String mcc = checkNotSet(mMcc.getText()); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 141 int mcc; local
151 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
155 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
157 loge("handlePollStateResultMessage: bad mcc operatorNumeric=" +
160 mcc = Integer.MAX_VALUE;
199 mNewCellIdentityLte = new CellIdentityLte(mcc, mnc, eci, pci, tac);
463 String mcc = operatorNumeric.substring(0, 3); local
  /development/ndk/platforms/android-9/include/android/
configuration.h 123 * Return the current MCC set in the configuration. 0 if not set.
128 * Set the current MCC in the configuration. 0 to clear.
130 void AConfiguration_setMcc(AConfiguration* config, int32_t mcc);