Searched defs:mnc (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp32 jfieldID mnc; member in struct:android::__anon865
51 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
80 gConfigurationClassInfo.mnc = GetFieldIDOrDie(env, clazz, "mnc", "I");
H A Dandroid_util_AssetManager.cpp672 jint mcc, jint mnc,
698 config.mnc = (uint16_t)mnc;
671 android_content_AssetManager_setConfiguration(JNIEnv* env, jobject clazz, jint mcc, jint mnc, jstring locale, jint orientation, jint touchscreen, jint density, jint keyboard, jint keyboardHidden, jint navigation, jint screenWidth, jint screenHeight, jint smallestScreenWidthDp, jint screenWidthDp, jint screenHeightDp, jint screenLayout, jint uiMode, jint sdkVersion) argument
/frameworks/base/core/java/android/service/carrier/
H A DCarrierIdentifier.java48 public CarrierIdentifier(String mcc, String mnc, String spn, String imsi, String gid1, argument
51 mMnc = mnc;
112 + ",mnc=" + mMnc
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityGsm.java60 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) { argument
67 this(mcc, mnc, lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE);
73 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
81 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int bsic) { argument
83 mMnc = mnc;
H A DCellIdentityLte.java61 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
68 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { argument
69 this(mcc, mnc, ci, pci, tac, Integer.MAX_VALUE);
75 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
83 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac, int earfcn) { argument
85 mMnc = mnc;
H A DCellIdentityWcdma.java60 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { argument
68 this(mcc, mnc, lac, cid, psc, Integer.MAX_VALUE);
74 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
82 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { argument
84 mMnc = mnc;
H A DSubscriptionInfo.java117 Bitmap icon, int mcc, int mnc, String countryIso) {
129 this.mMnc = mnc;
300 int mnc = source.readInt();
305 nameSource, iconTint, number, dataRoaming, iconBitmap, mcc, mnc, countryIso);
358 + " mnc " + mMnc + "}";
115 SubscriptionInfo(int id, String iccId, int simSlotIndex, CharSequence displayName, CharSequence carrierName, int nameSource, int iconTint, String number, int roaming, Bitmap icon, int mcc, int mnc, String countryIso) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMccTable.java57 MccEntry(int mnc, String iso, int smallestDigitsMCC) { argument
61 mMcc = mnc;
177 int mcc, mnc;
189 mnc = Integer.parseInt(mccmnc.substring(3));
195 Slog.d(LOG_TAG, "updateMccMncConfiguration: mcc=" + mcc + ", mnc=" + mnc);
208 config.mnc = mnc == 0 ? Configuration.MNC_ZERO : mnc;
/frameworks/base/native/android/
H A Dconfiguration.cpp49 return config->mnc;
141 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc) { argument
142 config->mnc = mnc;
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java755 public native final void setConfiguration(int mcc, int mnc, String locale, argument
H A DConfiguration.java72 * <a href="{@docRoot}guide/topics/resources/providing-resources.html#MccQualifier">mnc</a>
76 public int mnc; field in class:Configuration
754 mnc = o.mnc;
789 if (mnc != 0) {
790 sb.append(mnc);
791 sb.append("mnc");
793 sb.append("?mnc");
922 mcc = mnc = 0;
964 if (delta.mnc !
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp759 JNIEnv* /* env */, jobject /* obj */, jint type, jint mcc, jint mnc, jint lac, jint cid)
773 location.u.cellID.mnc = mnc;
758 android_location_GnssLocationProvider_agps_set_reference_location_cellid( JNIEnv* , jobject , jint type, jint mcc, jint mnc, jint lac, jint cid) argument
/frameworks/base/include/androidfw/
H A DResourceTypes.h913 uint16_t mnc; member in struct:android::ResTable_config::__anon983::__anon984
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java2074 int mnc = Integer.parseInt(phone.getNetworkOperator().substring(3));
2085 native_agps_set_ref_location_cellid(type, mcc, mnc,
2509 private native void native_agps_set_ref_location_cellid(int type, int mcc, int mnc, argument

Completed in 590 milliseconds