Home
last modified time | relevance | path

Searched refs:mnc (Results 1 – 25 of 43) sorted by relevance

12

/frameworks/base/core/java/android/content/res/
DConfiguration.java76 public int mnc; field in Configuration
754 mnc = o.mnc; in setTo()
789 if (mnc != 0) { in toString()
790 sb.append(mnc); in toString()
922 mcc = mnc = 0; in setToDefaults()
964 if (delta.mnc != 0 && mnc != delta.mnc) { in updateFrom()
966 mnc = delta.mnc; in updateFrom()
1128 if (delta.mnc != 0 && mnc != delta.mnc) { in diff()
1256 dest.writeInt(mnc); in writeToParcel()
1293 mnc = source.readInt(); in readFromParcel()
[all …]
DAssetManager.java755 public native final void setConfiguration(int mcc, int mnc, String locale, in setConfiguration() argument
DResourcesImpl.java408 mAssets.setConfiguration(mConfiguration.mcc, mConfiguration.mnc, in updateConfiguration()
/frameworks/base/core/jni/
Dandroid_content_res_Configuration.cpp32 jfieldID mnc; member
51 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc); in android_Configuration_getFromJava()
80 gConfigurationClassInfo.mnc = GetFieldIDOrDie(env, clazz, "mnc", "I"); in register_android_content_res_Configuration()
Dandroid_util_AssetManager.cpp672 jint mcc, jint mnc, in android_content_AssetManager_setConfiguration() argument
698 config.mnc = (uint16_t)mnc; in android_content_AssetManager_setConfiguration()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
DCellularNetwork.java30 int mnc = ((plmn[2] << 4) & 0xf0) | in CellularNetwork() local
35 String.format("%03x%03x", mcc, (mnc << 4) | n2) : in CellularNetwork()
36 String.format("%03x%02x", mcc, mnc); in CellularNetwork()
/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { in CellIdentityWcdma() argument
68 this(mcc, mnc, lac, cid, psc, Integer.MAX_VALUE); in CellIdentityWcdma()
82 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { in CellIdentityWcdma() argument
84 mMnc = mnc; in CellIdentityWcdma()
DCellIdentityGsm.java66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) { in CellIdentityGsm() argument
67 this(mcc, mnc, lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE); in CellIdentityGsm()
81 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int bsic) { in CellIdentityGsm() argument
83 mMnc = mnc; in CellIdentityGsm()
DCellIdentityLte.java68 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { in CellIdentityLte() argument
69 this(mcc, mnc, ci, pci, tac, Integer.MAX_VALUE); in CellIdentityLte()
83 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac, int earfcn) { in CellIdentityLte() argument
85 mMnc = mnc; in CellIdentityLte()
DSubscriptionInfo.java125 Bitmap icon, int mcc, int mnc, String countryIso, int simProvisioningStatus) { in SubscriptionInfo() argument
137 this.mMnc = mnc; in SubscriptionInfo()
320 int mnc = source.readInt();
326 nameSource, iconTint, number, dataRoaming, iconBitmap, mcc, mnc, countryIso,
DSubscriptionManager.java1406 newConfig.mnc = subInfo.getMnc(); in getResourcesForSubId()
1407 if (newConfig.mnc == 0) newConfig.mnc = Configuration.MNC_ZERO; in getResourcesForSubId()
/frameworks/base/native/android/
Dconfiguration.cpp49 return config->mnc; in AConfiguration_getMnc()
141 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc) { in AConfiguration_setMnc() argument
142 config->mnc = mnc; in AConfiguration_setMnc()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DMccTable.java57 MccEntry(int mnc, String iso, int smallestDigitsMCC) { in MccEntry() argument
61 mMcc = mnc; in MccEntry()
170 int mcc, mnc; in updateMccMncConfiguration() local
182 mnc = Integer.parseInt(mccmnc.substring(3)); in updateMccMncConfiguration()
188 Slog.d(LOG_TAG, "updateMccMncConfiguration: mcc=" + mcc + ", mnc=" + mnc); in updateMccMncConfiguration()
201 config.mnc = mnc == 0 ? Configuration.MNC_ZERO : mnc; in updateMccMncConfiguration()
DSubscriptionController.java288 int mnc = cursor.getInt(cursor.getColumnIndexOrThrow( in getSubInfoRecord() local
301 + " mcc:" + mcc + " mnc:" + mnc + " countIso:" + countryIso in getSubInfoRecord()
311 nameSource, iconTint, number, dataRoaming, iconBitmap, mcc, mnc, countryIso, in getSubInfoRecord()
1083 int mnc = 0; in setMccMnc() local
1086 mnc = Integer.parseInt(mccMnc.substring(3)); in setMccMnc()
1090 if (DBG) logd("[setMccMnc]+ mcc/mnc:" + mcc + "/" + mnc + " subId:" + subId); in setMccMnc()
1093 value.put(SubscriptionManager.MNC, mnc); in setMccMnc()
/frameworks/support/v13/
DAndroid.mk39 LOCAL_MODULE := android-support-v13-mnc
51 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13-mnc
/frameworks/base/core/java/android/service/carrier/
DCarrierIdentifier.java48 public CarrierIdentifier(String mcc, String mnc, String spn, String imsi, String gid1, in CarrierIdentifier() argument
51 mMnc = mnc; in CarrierIdentifier()
/frameworks/base/tools/aapt2/
DConfigDescription.cpp90 out->mnc = atoi(val); in parseMnc()
91 if (out->mnc == 0) { in parseMnc()
92 out->mnc = ACONFIGURATION_MNC_ZERO; in parseMnc()
/frameworks/native/include/android/
Dconfiguration.h473 void AConfiguration_setMnc(AConfiguration* config, int32_t mnc);
/frameworks/base/libs/androidfw/
DResourceTypes.cpp1839 mnc = dtohs(mnc); in copyFromDtoH()
1853 mnc = htods(mnc); in swapHtoD()
1916 if (mnc != o.mnc) { in compareLogical()
1917 return mnc < o.mnc ? -1 : 1; in compareLogical()
1976 if (mnc != o.mnc) diffs |= CONFIG_MNC; in diff()
2040 if (mnc != o.mnc) { in isMoreSpecificThan()
2041 if (!mnc) return false; in isMoreSpecificThan()
2042 if (!o.mnc) return true; in isMoreSpecificThan()
2263 if ((mnc != o.mnc) && requested->mnc) { in isBetterThan()
2264 return (mnc); in isBetterThan()
[all …]
/frameworks/base/tools/aapt/
DAaptConfig.cpp330 out->mnc = atoi(val); in parseMnc()
331 if (out->mnc == 0) { in parseMnc()
332 out->mnc = ACONFIGURATION_MNC_ZERO; in parseMnc()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp759 JNIEnv* /* env */, jobject /* obj */, jint type, jint mcc, jint mnc, jint lac, jint cid) in android_location_GnssLocationProvider_agps_set_reference_location_cellid() argument
773 location.u.cellID.mnc = mnc; in android_location_GnssLocationProvider_agps_set_reference_location_cellid()
/frameworks/base/services/core/java/com/android/server/location/
DGnssLocationProvider.java2021 int mnc = Integer.parseInt(phone.getNetworkOperator().substring(3));
2032 native_agps_set_ref_location_cellid(type, mcc, mnc,
2458 private native void native_agps_set_ref_location_cellid(int type, int mcc, int mnc,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java6356 String mnc; in buildIdentity() local
6374 mnc = mccMnc.substring(3); in buildIdentity()
6375 if (mnc.length() == 2) in buildIdentity()
6376 mnc = "0" + mnc; in buildIdentity()
6380 mnc = imsi.substring(3, 6); in buildIdentity()
6383 return prefix + imsi + "@wlan.mnc" + mnc + ".mcc" + mcc + ".3gppnetwork.org"; in buildIdentity()
/frameworks/base/include/androidfw/
DResourceTypes.h913 uint16_t mnc; member
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java3606 String mnc = parser.getAttributeValue(null, ATTR_MNC); in getProvisioningUrlBaseFromFile() local
3607 if (mnc != null && Integer.parseInt(mnc) == config.mnc) { in getProvisioningUrlBaseFromFile()

12