Home
last modified time | relevance | path

Searched refs:getMccString (Results 1 – 25 of 36) sorted by relevance

12

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCellIdentityTdscdmaTest.java58 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 DCellIdentityWcdmaTest.java59 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 DCellIdentityGsmTest.java59 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 DCellIdentityLteTest.java66 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 DCellIdentityNrTest.java63 assertThat(cellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testGetMethod()
121 assertThat(anotherCellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testParcel()
H A DCellIdentityTest.java224 final String mccStr = identity.getMccString(); in testGetMccMncString()
/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/
H A DCellInfoUtil.java176 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 DNetworkOperatorPreference.java169 final String mcc = ((CellIdentityNr) cellId).getMccString(); in getOperatorNumeric()
/aosp12/packages/services/Mms/src/com/android/mms/service/
H A DMmsConfigManager.java117 + sub.getMccString() + "/" + sub.getMncString() in load()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCellularNetworkValidator.java175 || cellIdentity.getMccString() == null || cellIdentity.getMncString() == null
180 return cellIdentity.getMccString() + cellIdentity.getMncString() + "_"
H A DNetworkScanRequestTracker.java186 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 DLocaleTracker.java285 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 DEpdgSelectorTest.java104 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 DIwlanHelper.java63 .append(subInfo.getMccString()) in getNai()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityNr.java231 public String getMccString() { in getMccString() method in CellIdentityNr
H A DCellIdentityGsm.java220 public String getMccString() { in getMccString() method in CellIdentityGsm
H A DCellIdentityTdscdma.java169 public String getMccString() { in getMccString() method in CellIdentityTdscdma
H A DCellIdentity.java137 public String getMccString() { in getMccString() method in CellIdentity
H A DCellIdentityWcdma.java212 public String getMccString() { in getMccString() method in CellIdentityWcdma
H A DCellIdentityLte.java269 public String getMccString() { in getMccString() method in CellIdentityLte
/aosp12/packages/services/AlternativeNetworkAccess/src/com/android/ons/
H A DONSNetworkScanCtlr.java271 return ((CellInfoLte) cellInfo).getCellIdentity().getMccString() in getMccMnc()
/aosp12/packages/modules/NetworkStack/src/com/android/server/connectivity/
H A DNetworkMonitor.java1843 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 DSubscriptionUtil.java545 String countryIso = MccTable.countryCodeForMcc(subscriptionInfo.getMccString());
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
H A DEpdgSelector.java214 .append(subInfo.getMccString()) in getPlmnList()
/aosp12/packages/apps/Settings/src/com/android/settings/network/apn/
H A DApnEditor.java547 final String mcc = (subInfo == null) ? null : subInfo.getMccString(); in fillUI()
718 Objects.toString(subInfo.getMccString(), ""); in mvnoDescription()

12