/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellIdentityTdscdmaTest.java | 59 assertNull(ci.getMccString()); in testDefaultConstructor() 78 assertEquals(MCC_STR, ci.getMccString()); in testConstructor() 97 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 103 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 110 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 115 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
D | CellIdentityWcdmaTest.java | 60 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 76 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 94 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 108 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 117 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 127 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 135 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
D | CellIdentityGsmTest.java | 60 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 80 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 98 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 115 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 125 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 136 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 145 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc()
|
D | CellIdentityLteTest.java | 67 assertEquals(MCC_STR, ci.getMccString()); in testDefaultConstructor() 86 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithThreeDigitMnc() 100 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithTwoDigitMnc() 113 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 123 assertEquals(MCC_STR, ci.getMccString()); in testConstructorWithEmptyMccMnc() 134 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 143 assertNull(ci.getMccString()); in testConstructorWithEmptyMccMnc() 160 assertEquals(MCC_STR, ci.getMccString()); in testFormerConstructor()
|
D | CellIdentityNrTest.java | 63 assertThat(cellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testGetMethod() 121 assertThat(anotherCellIdentityNr.getMccString()).isEqualTo(MCC_STR); in testParcel()
|
D | SubscriptionInfoTest.java | 78 assertThat(mSubscriptionInfoUT.getMccString()).isEqualTo("310"); in testSubProperties()
|
D | CellIdentityTest.java | 225 final String mccStr = identity.getMccString(); in testGetMccMncString()
|
D | DisplayInfoControllerTest.java | 139 final String mcc = ci.getMccString(); in getPlmnFromCellIdentity()
|
D | ServiceStateTrackerTest.java | 421 final String mcc = ci.getMccString(); in getPlmnFromCellIdentity()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/ |
D | CellularNetworkValidator.java | 168 || cellIdentity.getMccString() == null || cellIdentity.getMncString() == null 173 return cellIdentity.getMccString() + cellIdentity.getMncString() + "_"
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | NetworkScanRequestTracker.java | 190 String mccMnc = ci.getCellIdentity().getMccString() in doesCellInfoCorrespondToKnownMccMnc() 214 if (info.getMccString() != null && info.getMncString() != null) { in getAllowableMccMncsFromSubscriptionInfo() 215 plmns = Stream.concat(plmns, Stream.of(info.getMccString() + info.getMncString())); in getAllowableMccMncsFromSubscriptionInfo()
|
D | LocaleTracker.java | 292 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccFromCellInfo() 327 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccMncFromCellInfo()
|
D | CellularNetworkService.java | 268 final String mcc = ci.getMccString(); in getPlmnFromCellIdentity()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/subscription/ |
D | SubscriptionInfoInternalTest.java | 282 assertThat(subInfo.getMccString()).isEqualTo(SubscriptionDatabaseManagerTest.FAKE_MCC1); in testConvertToSubscriptionInfo() 333 assertThat(subInfoNull.getMccString()).isEqualTo(""); in testNullability()
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentity.java | 136 public String getMccString() { in getMccString() method in CellIdentity
|
D | CellIdentityNr.java | 215 public String getMccString() { in getMccString() method in CellIdentityNr
|
D | CellIdentityTdscdma.java | 144 public String getMccString() { in getMccString() method in CellIdentityTdscdma
|
D | CellIdentityGsm.java | 196 public String getMccString() { in getMccString() method in CellIdentityGsm
|
D | CellIdentityWcdma.java | 188 public String getMccString() { in getMccString() method in CellIdentityWcdma
|
D | CellIdentityLte.java | 244 public String getMccString() { in getMccString() method in CellIdentityLte
|
D | SubscriptionInfo.java | 640 public String getMccString() { in getMccString() method in SubscriptionInfo
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/satellite/ |
D | SatelliteSOSMessageRecommender.java | 482 String mccmnc = nri.getCellIdentity().getMccString() in isSatellitePlmn()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | TelephonyMetrics.java | 852 if (info.getMccString() != null && info.getMncString() != null) { in updateActiveSubscriptionInfoList() 853 activeSubscriptionInfo.simMccmnc = info.getMccString() + info.getMncString(); in updateActiveSubscriptionInfoList()
|
/frameworks/base/services/core/java/com/android/server/location/gnss/ |
D | GnssLocationProvider.java | 1531 String mcc_str = ci.getMccString(); in setRefLocation()
|
/frameworks/base/services/core/java/com/android/server/stats/pull/ |
D | StatsPullAtomService.java | 5233 final String mcc = sub.getMccString();
|