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

1 2

  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 30 jfieldID mnc; member in struct:android::__anon14498
49 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
97 GET_FIELD_ID(gConfigurationClassInfo.mnc, clazz,
98 "mnc", "I");
android_util_AssetManager.cpp 507 jint mcc, jint mnc,
529 config.mnc = (uint16_t)mnc;
    [all...]
  /frameworks/base/core/java/android/content/res/
Configuration.java 49 * IMSI MNC (Mobile Network Code). 0 if undefined.
51 public int mnc; field in class:Configuration
308 mnc = o.mnc;
339 sb.append(mnc);
340 sb.append("mnc");
456 mcc = mnc = 0;
498 if (delta.mnc != 0 && mnc != delta.mnc) {
    [all...]
AssetManager.java 652 public native final void setConfiguration(int mcc, int mnc, String locale,
  /development/apps/Development/src/com/android/development/
ConfigurationViewer.java 46 + "mnc=" + c.mnc + "\n"
  /development/tools/findunused/
findunusedtranslations 31 if ($values =~ /^(-mcc[^-]*)*(-mnc[^-]*)*(.*)$/) {
  /frameworks/base/native/android/
configuration.cpp 49 return config->mnc;
132 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc) {
133 config->mnc = mnc;
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 46 mConfig.mcc = mConfig.mnc = 1;
138 cfg1.mnc = 2;
139 cfg2.mnc = 3;
141 cfg1.mnc = 3;
142 cfg2.mnc = 2;
185 config.mnc = 1;
363 config.mnc = 1;
ResourcesTest.java 167 private Resources getResources(final Configuration config, final int mcc, final int mnc,
177 config.mnc = mnc;
ConfigTest.java 39 MNC,
99 case MNC:
100 mConfig.mnc = value;
176 config.mConfig.mnc = 001; // unused
243 config.setProperty(Properties.MNC, 222);
447 config.setProperty(Properties.MNC, 222);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
MccTable.java 52 MccEntry(int mnc, String iso, int smallestDigitsMCC) {
53 this(mnc, iso, smallestDigitsMCC, null);
56 MccEntry(int mnc, String iso, int smallestDigitsMCC, String language) {
57 this.mcc = mnc;
168 * Updates MCC and MNC device configuration information for application retrieving
169 * correct version of resources. If either MCC or MNC is 0, they will be ignored (not set).
171 * @param mccmnc truncated imsi with just the MCC and MNC - MNC assumed to be from 4th to end
175 int mcc, mnc; local
179 mnc = Integer.parseInt(mccmnc.substring(3))
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h 810 uint16_t mnc; member in struct:android::ResTable_config::__anon14661::__anon14662
998 mnc = dtohs(mnc);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 108 Telephony.Carriers.MNC, // 10
260 // MCC is first 3 chars and then in 2 - 3 chars of MNC
265 String mnc = numeric.substring(3); local
266 // Auto populate MNC and MCC for new entries, based on what SIM reports
268 mMnc.setText(mnc);
269 mCurMnc = mnc;
457 String mnc = checkNotSet(mMnc.getText()); local
503 values.put(Telephony.Carriers.MNC, mnc);
505 values.put(Telephony.Carriers.NUMERIC, mcc + mnc);
529 String mnc = checkNotSet(mMnc.getText()); local
    [all...]
  /development/ndk/platforms/android-9/include/android/
configuration.h 133 * Return the current MNC set in the configuration. 0 if not set.
138 * Set the current MNC in the configuration. 0 to clear.
140 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/
configuration.h 133 * Return the current MNC set in the configuration. 0 if not set.
138 * Set the current MNC in the configuration. 0 to clear.
140 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/
configuration.h 133 * Return the current MNC set in the configuration. 0 if not set.
138 * Set the current MNC in the configuration. 0 to clear.
140 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/
configuration.h 133 * Return the current MNC set in the configuration. 0 if not set.
138 * Set the current MNC in the configuration. 0 to clear.
140 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
  /frameworks/base/tools/aapt/
AaptAssets.cpp 126 // IMSI - MNC
129 *value = config.mnc;
270 return config.mnc;
328 String8 mcc, mnc, loc, layoutsize, layoutlong, orient, den; local
375 // imsi - mnc
377 mnc = part;
622 this->mnc = mnc;
652 s += this->mnc;
700 if (this->mnc != "")
    [all...]
AaptAssets.h 125 String8 mnc; member in struct:AaptGroupEntry
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 374 jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid)
388 location.u.cellID.mnc = mnc;
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 130 "mnc TEXT," +
247 String mnc = parser.getAttributeValue(null, "mnc"); local
248 String numeric = mcc + mnc;
252 map.put(Telephony.Carriers.MNC, mnc);
  /frameworks/base/native/include/android/
configuration.h 142 * Return the current MNC set in the configuration. 0 if not set.
147 * Set the current MNC in the configuration. 0 to clear.
149 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
  /hardware/libhardware/include/hardware/
gps.h 308 uint16_t mnc; member in struct:__anon16210
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java 1504 int mnc = Integer.parseInt(phone.getNetworkOperator().substring(3)); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 384 final int previousMnc = sLocaleConfiguration.mnc;
385 final int mnc = configuration.mnc; local
387 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
392 sLocaleConfiguration.mnc = mnc;
409 public int mnc = -1; field in class:Launcher.LocaleConfiguration
418 configuration.mnc = in.readInt();
440 out.writeInt(configuration.mnc);
    [all...]

Completed in 1004 milliseconds

1 2