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

1 2 3 4

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MccTable.java 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);
120 countryCodeForMcc(int mcc)
124 entry = entryForMcc(mcc);
138 public static String defaultLanguageForMcc(int mcc) {
141 entry = entryForMcc(mcc);
177 int mcc, mnc; local
    [all...]
ServiceStateTracker.java 662 // Return false if the mcc isn't valid as we don't know where we are.
663 // Return true if we have an IccCard and the mcc changed or we
667 // If mcc is invalid then we'll return false
668 int mcc; local
670 mcc = Integer.parseInt(operatorNumeric.substring(0, 3));
673 log("shouldFixTimeZoneNow: no mcc, operatorNumeric=" + operatorNumeric +
679 // If prevMcc is invalid will make it different from mcc
685 prevMcc = mcc + 1;
695 boolean retVal = ((iccCardExist && (mcc != prevMcc)) || needToFixTimeZone);
700 " operatorNumeric=" + operatorNumeric + " mcc=" + mcc
    [all...]
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 29 jfieldID mcc; member in struct:android::__anon31833
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
548 /** @hide Native-specific bit mask for MCC config; DO NOT USE UNLESS YOU ARE SURE. */
598 mcc = o.mcc;
628 if (mcc != 0) {
629 sb.append(mcc);
630 sb.append("mcc");
632 sb.append("?mcc");
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.java 51 * @param mcc 3-digit Mobile Country Code, 0..999
58 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
59 mMcc = mcc;
CellIdentityWcdma.java 54 * @param mcc 3-digit Mobile Country Code, 0..999
62 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
63 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;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 130 int mcc; local
140 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
144 mcc = Integer.parseInt(operatorNumeric.substring(0,3));
146 loge("handlePollStateResultMessage: bad mcc operatorNumeric=" +
149 mcc = Integer.MAX_VALUE;
191 mNewCellIdentityLte = new CellIdentityLte(mcc, mnc, eci, pci, tac);
416 String mcc = operatorNumeric.substring(0, 3); local
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 112 Telephony.Carriers.MCC, // 9
267 // MCC is first 3 chars and then in 2 - 3 chars of MNC
270 String mcc = numeric.substring(0, 3); local
273 // Auto populate MNC and MCC for new entries, based on what SIM reports
274 mMcc.setText(mcc);
277 mCurMcc = mcc;
509 String mcc = checkNotSet(mMcc.getText()); local
555 values.put(Telephony.Carriers.MCC, mcc);
558 values.put(Telephony.Carriers.NUMERIC, mcc + mnc)
584 String mcc = checkNotSet(mMcc.getText()); local
    [all...]
  /hardware/ril/include/telephony/
ril.h 763 int mcc; \/* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown *\/ member in struct:__anon33882
771 int mcc; \/* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown *\/ member in struct:__anon33883
796 int mcc; \/* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown *\/ member in struct:__anon33885
    [all...]
  /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);
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/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);
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/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);
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/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);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/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);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/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);
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/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);
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/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);
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/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);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/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);
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/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);

Completed in 3042 milliseconds

1 2 3 4