/aosp12/hardware/ril/include/telephony/ |
H A D | ril_mcc.h | 37 char mccStr[4] = {0}; in decode() local 40 snprintf(mccStr, sizeof(mccStr), "%03d", mcc); in decode() 41 return mccStr; in decode()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | CellIdentityTest.java | 224 final String mccStr = identity.getMccString(); in testGetMccMncString() local 227 assertNull(mccStr); in testGetMccMncString() 230 assertEquals(MCC_STR, mccStr); in testGetMccMncString()
|
/aosp12/frameworks/base/telephony/java/android/telephony/ |
H A D | CellIdentityNr.java | 83 @Nullable String mccStr, @Nullable String mncStr, long nci, in CellIdentityNr() argument 86 super(TAG, CellInfo.TYPE_NR, mccStr, mncStr, alphal, alphas); in CellIdentityNr()
|
H A D | CellIdentityGsm.java | 87 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, @Nullable String mccStr, in CellIdentityGsm() argument 90 super(TAG, CellInfo.TYPE_GSM, mccStr, mncStr, alphal, alphas); in CellIdentityGsm()
|
H A D | CellIdentityWcdma.java | 91 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument 95 super(TAG, CellInfo.TYPE_WCDMA, mccStr, mncStr, alphal, alphas); in CellIdentityWcdma()
|
H A D | CellIdentityLte.java | 118 int bandwidth, @Nullable String mccStr, @Nullable String mncStr, in CellIdentityLte() argument 122 super(TAG, CellInfo.TYPE_LTE, mccStr, mncStr, alphal, alphas); in CellIdentityLte()
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
H A D | NetworkMonitorTest.java | 1011 String mccStr, String mncStr, String alphal, String alphas) in makeCellIdentityGsm() argument 1014 return new CellIdentityGsm(lac, cid, arfcn, bsic, mccStr, mncStr, alphal, alphas, in makeCellIdentityGsm() 1021 return constructor.newInstance(lac, cid, arfcn, bsic, mccStr, mncStr, alphal, alphas); in makeCellIdentityGsm() 1026 int bandwidth, String mccStr, String mncStr, String alphal, String alphas) in makeCellIdentityLte() argument 1030 bandwidth, mccStr, mncStr, alphal, alphas, in makeCellIdentityLte() 1037 return constructor.newInstance(ci, pci, tac, earfcn, bandwidth, mccStr, mncStr, alphal, in makeCellIdentityLte()
|