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

1 2 3 4 5 6 7 8 9

  /frameworks/base/telephony/java/android/telephony/
ImsiEncryptionInfo.java 41 private final String mnc; field in class:ImsiEncryptionInfo
48 public ImsiEncryptionInfo(String mcc, String mnc, int keyType, String keyIdentifier,
50 this(mcc, mnc, keyType, keyIdentifier, makeKeyObject(key), expirationTime);
53 public ImsiEncryptionInfo(String mcc, String mnc, int keyType, String keyIdentifier,
59 this.mnc = mnc;
72 mnc = in.readString();
79 return this.mnc;
137 dest.writeString(mnc);
147 + "mnc=" + mn
    [all...]
CellIdentityGsm.java 60 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
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) {
83 mMnc = mnc;
CellIdentityLte.java 61 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
68 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) {
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) {
85 mMnc = mnc;
CellIdentityWcdma.java 60 * @param mnc 2 or 3-digit Mobile Network Code, 0..999
67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
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) {
84 mMnc = mnc;
SubscriptionInfo.java 133 Bitmap icon, int mcc, int mnc, String countryIso) {
135 roaming, icon, mcc, mnc, countryIso, false /* isEmbedded */,
144 Bitmap icon, int mcc, int mnc, String countryIso, boolean isEmbedded,
157 this.mMnc = mnc;
304 * @return the MNC.
403 int mnc = source.readInt();
410 nameSource, iconTint, number, dataRoaming, iconBitmap, mcc, mnc, countryIso,
466 + " mnc " + mMnc + " isEmbedded " + mIsEmbedded
  /system/chre/apps/chqts/src/general_test/
cell_info_tdscdma.cc 27 } else if (!isBoundedInt32(identity.mnc, 0, 999, INT32_MAX)) {
29 "Invalid TDSCDMA Mobile Network Code: %d", identity.mnc);
cell_info_gsm.cc 27 } else if (!isBoundedInt32(identity.mnc, 0, 999, INT32_MAX)) {
29 "Invalid GSM Mobile Network Code: %d", identity.mnc);
cell_info_lte.cc 27 } else if (!isBoundedInt32(identity.mnc, 0, 999, INT32_MAX)) {
29 "Invalid LTE Mobile Network Code: %d", identity.mnc);
cell_info_wcdma.cc 27 } else if (!isBoundedInt32(identity.mnc, 0, 999, INT32_MAX)) {
29 "Invalid WCDMA Mobile Network Code: %d", identity.mnc);
  /packages/apps/Messaging/src/com/android/messaging/sms/
BugleCarrierConfigValuesLoader.java 165 final int mnc = mccMnc[1]; local
167 if (mcc == 0 && mnc == 0) {
170 subConfig.mnc = config.mnc;
173 subConfig.mnc = mnc;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
CellularNetwork.java 56 * The value for comparing the third digit of MNC data with to determine if the MNC is
138 * of |MCC|MNC| will be returned.
143 * | MNC Digit 3 | MCC Digit 3 |
144 * | MNC Digit 2 | MNC Digit 1 |
157 // Formated as |MNC Digit 1 | MNC Digit 2 |
158 int mnc = ((plmn[2] << 4) & 0xF0) | ((plmn[2] >> 4) & 0x0F); local
160 // The digit 3 of MNC decides if the MNC is 2 or 3 digits number. When it is equal t
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
Utils.java 96 * Get MCC/MNC of an SIM subscription
100 * @return a non-empty array with exactly two elements, first is mcc and last is mnc.
119 Log.w(MmsService.TAG, "Invalid mcc/mnc from system " + mccMncString + ": " + e);
140 final int mnc = mccMnc[1]; local
141 if (mcc == 0 && mnc == 0) {
146 subConfig.mnc = mnc;
  /system/chre/chre_api/include/chre_api/chre/
wwan.h 93 int32_t mnc; member in struct:chreWwanCellIdentityGsm
118 int32_t mnc; member in struct:chreWwanCellIdentityWcdma
165 int32_t mnc; member in struct:chreWwanCellIdentityLte
186 int32_t mnc; member in struct:chreWwanCellIdentityTdscdma
  /frameworks/base/core/proto/android/content/
configuration.proto 32 uint32 mnc = 3;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierInfoManager.java 48 String mnc = ""; local
54 mnc = networkOperator.substring(3);
55 Log.i(LOG_TAG, "using values for mnc, mcc: " + mnc + "," + mcc);
69 "mcc=? and mnc=? and key_type=?",
70 new String[]{mcc, mnc, String.valueOf(keyType)}, null);
81 return new ImsiEncryptionInfo(mcc, mnc, keyType, keyIdentifier, carrier_key,
108 contentValues.put(Telephony.CarrierColumns.MNC, imsiEncryptionInfo.getMnc());
130 "mcc=? and mnc=? and key_type=?", new String[]{
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 32 jfieldID mnc; member in struct:android::__anon40605
51 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
80 gConfigurationClassInfo.mnc = GetFieldIDOrDie(env, clazz, "mnc", "I");
  /frameworks/base/core/java/android/service/carrier/
CarrierIdentifier.java 48 public CarrierIdentifier(String mcc, String mnc, String spn, String imsi, String gid1,
51 mMnc = mnc;
112 + ",mnc=" + mMnc
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
TelephonyUtil.java 61 * and realm is derived MMC/MNC tuple according 3GGP spec(TS23.003)
81 /* extract mcc & mnc from mccMnc */
83 String mnc; local
86 mnc = mccMnc.substring(3);
87 if (mnc.length() == 2) {
88 mnc = "0" + mnc;
91 // extract mcc & mnc from IMSI, assume mnc size is 3
93 mnc = imsi.substring(3, 6)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnEditorActivity.java 152 Telephony.Carriers.MNC, // 4
263 // MCC is first 3 chars and then in 2 - 3 chars of MNC
268 String mnc = numeric.substring(3); local
269 // Auto populate MNC and MCC for new entries, based on what SIM reports
271 mMnc.setText(mnc);
272 mCurMnc = mnc;
353 final String mnc = checkNotSet(mMnc.getText()); local
379 values.put(Telephony.Carriers.MNC, mnc);
381 values.put(Telephony.Carriers.NUMERIC, mcc + mnc);
442 String mnc = checkNotSet(mMnc.getText()); local
    [all...]
  /tools/test/connectivity/acts/tests/google/tel/lab/
TelLabDataRoamingTest.py 76 def LTE_WCDMA_data_roaming(self, mcc, mnc):
82 self.bts1.mnc = mnc
84 self.bts2.mnc = mnc
  /system/chre/apps/wwan_world/
wwan_world.cc 73 LOGI(" mnc %" PRId32, cell->CellInfo.lte.cellIdentityLte.mnc);
82 LOGI(" mnc %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.mnc);
91 LOGI(" mnc %" PRId32, cell->CellInfo.wcdma.cellIdentityWcdma.mnc);
  /hardware/interfaces/gnss/1.0/
IAGnssRil.hal 62 uint16_t mnc;
  /hardware/interfaces/gnss/1.0/default/
AGnssRil.cpp 102 .mnc = cellID.mnc,
  /development/apps/Development/src/com/android/development/
ConfigurationViewer.java 46 + "mnc=" + c.mnc + "\n"
  /development/tools/findunused/
findunusedtranslations 31 if ($values =~ /^(-mcc[^-]*)*(-mnc[^-]*)*(.*)$/) {

Completed in 729 milliseconds

1 2 3 4 5 6 7 8 9