/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | CellIdentityTdscdmaTest.java | 58 assertNull(ci.getMccString()); in testDefaultConstructor() 77 assertEquals(MCC_STR, ci.getMccString()); in testConstructor() 96 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 102 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 109 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 114 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
H A D | CellIdentityWcdmaTest.java | 59 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 75 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 93 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 107 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 116 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 126 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 134 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
H A D | CellIdentityGsmTest.java | 59 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 79 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 97 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 114 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 124 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 135 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 144 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
H A D | CellIdentityLteTest.java | 66 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 85 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 99 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 112 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 122 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 133 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 142 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 159 assertEquals(MCC_STR, ci.getMccString()); in testFormerConstructor()
|
H A D | CellIdentityNrTest.java | 63 assertThat(cellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testGetMethod() 121 assertThat(anotherCellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testParcel()
|
H A D | CellIdentityTest.java | 224 final String mccStr = identity.getMccString(); in testGetMccMncString()
|
/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/ |
H A D | CellInfoUtil.java | 176 mcc = ((CellIdentityGsm) cid).getMccString(); in getCellIdentityMcc() 178 mcc = ((CellIdentityWcdma) cid).getMccString(); in getCellIdentityMcc() 180 mcc = ((CellIdentityTdscdma) cid).getMccString(); in getCellIdentityMcc() 182 mcc = ((CellIdentityLte) cid).getMccString(); in getCellIdentityMcc() 184 mcc = ((CellIdentityNr) cid).getMccString(); in getCellIdentityMcc()
|
H A D | NetworkOperatorPreference.java | 169 final String mcc = ((CellIdentityNr) cellId).getMccString(); in getOperatorNumeric()
|
/aosp12/packages/services/Mms/src/com/android/mms/service/ |
H A D | MmsConfigManager.java | 117 + sub.getMccString() + "/" + sub.getMncString() in load()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | CellularNetworkValidator.java | 175 || cellIdentity.getMccString() == null || cellIdentity.getMncString() == null 180 return cellIdentity.getMccString() + cellIdentity.getMncString() + "_"
|
H A D | NetworkScanRequestTracker.java | 186 String mccMnc = ci.getCellIdentity().getMccString() in doesCellInfoCorrespondToKnownMccMnc() 210 if (info.getMccString() != null && info.getMncString() != null) { in getAllowableMccMncsFromSubscriptionInfo() 211 plmns = Stream.concat(plmns, Stream.of(info.getMccString() + info.getMncString())); in getAllowableMccMncsFromSubscriptionInfo()
|
H A D | LocaleTracker.java | 285 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccFromCellInfo() 320 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccMncFromCellInfo()
|
/aosp12/packages/services/Iwlan/test/com/google/android/iwlan/epdg/ |
H A D | EpdgSelectorTest.java | 104 when(mMockSubscriptionInfo.getMccString()).thenReturn("311"); in setUp() 377 when(mMockCellIdentityNr.getMccString()).thenReturn(testMccString); in testCellularResolutionMethod()
|
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/ |
H A D | IwlanHelper.java | 63 .append(subInfo.getMccString()) in getNai()
|
/aosp12/frameworks/base/telephony/java/android/telephony/ |
H A D | CellIdentityNr.java | 231 public String getMccString() { in getMccString() method in CellIdentityNr
|
H A D | CellIdentityGsm.java | 220 public String getMccString() { in getMccString() method in CellIdentityGsm
|
H A D | CellIdentityTdscdma.java | 169 public String getMccString() { in getMccString() method in CellIdentityTdscdma
|
H A D | CellIdentity.java | 137 public String getMccString() { in getMccString() method in CellIdentity
|
H A D | CellIdentityWcdma.java | 212 public String getMccString() { in getMccString() method in CellIdentityWcdma
|
H A D | CellIdentityLte.java | 269 public String getMccString() { in getMccString() method in CellIdentityLte
|
/aosp12/packages/services/AlternativeNetworkAccess/src/com/android/ons/ |
H A D | ONSNetworkScanCtlr.java | 271 return ((CellInfoLte) cellInfo).getCellIdentity().getMccString() in getMccMnc()
|
/aosp12/packages/modules/NetworkStack/src/com/android/server/connectivity/ |
H A D | NetworkMonitor.java | 1843 return ((CellInfoGsm) cell).getCellIdentity().getMccString(); in getMccFromCellInfo() 1845 return ((CellInfoLte) cell).getCellIdentity().getMccString(); in getMccFromCellInfo() 1847 return ((CellInfoWcdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo() 1849 return ((CellInfoTdscdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo() 1851 return ((CellIdentityNr) ((CellInfoNr) cell).getCellIdentity()).getMccString(); in getMccFromCellInfo()
|
/aosp12/packages/apps/Settings/src/com/android/settings/network/ |
H A D | SubscriptionUtil.java | 545 String countryIso = MccTable.countryCodeForMcc(subscriptionInfo.getMccString());
|
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/epdg/ |
H A D | EpdgSelector.java | 214 .append(subInfo.getMccString()) in getPlmnList()
|
/aosp12/packages/apps/Settings/src/com/android/settings/network/apn/ |
H A D | ApnEditor.java | 547 final String mcc = (subInfo == null) ? null : subInfo.getMccString(); in fillUI() 718 Objects.toString(subInfo.getMccString(), ""); in mvnoDescription()
|