/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellIdentityWcdmaTest.java | 32 private static final int CID = 268435455; field in CellIdentityWcdmaTest 47 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, MNC_STR, in testDefaultConstructor() 51 assertEquals(CID, ci.getCid()); in testDefaultConstructor() 68 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, mncWithThreeDigit, in testConstructorWithThreeDigitMnc() 82 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, mncWithTwoDigit, in testConstructorWithTwoDigitMnc() 96 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, null, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 104 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 112 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 120 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, "", "", ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 132 new CellIdentityWcdma(MCC, MNC, LAC, CID, PSC); in testFormerConstructor() [all …]
|
D | CellIdentityGsmTest.java | 32 private static final int CID = 65535; field in CellIdentityGsmTest 48 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR, in testDefaultConstructor() 52 assertEquals(CID, ci.getCid()); in testDefaultConstructor() 69 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithThreeDigit, in testConstructorWithThreeDigitMnc() 83 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithTwoDigit, in testConstructorWithTwoDigitMnc() 96 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 104 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 112 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 120 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, "", "", ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc() 132 new CellIdentityGsm(MCC, MNC, LAC, CID); in testFormerConstructor() [all …]
|
D | CellIdentityTdscdmaTest.java | 47 private static final int CID = 268435455; field in CellIdentityTdscdmaTest 55 new CellIdentityTdscdma(MCC_STR, MNC_STR, LAC, CID, CPID); in testDefaultConstructor() 60 assertEquals(CID, ci.getCid()); in testDefaultConstructor() 66 CellIdentityTdscdma ci = new CellIdentityTdscdma(null, null, LAC, CID, CPID); in testConstructorWithEmptyMccMnc() 71 ci = new CellIdentityTdscdma(MCC_STR, null, LAC, CID, CPID); in testConstructorWithEmptyMccMnc() 76 ci = new CellIdentityTdscdma(null, MNC_STR, LAC, CID, CPID); in testConstructorWithEmptyMccMnc() 81 ci = new CellIdentityTdscdma("", "", LAC, CID, CPID); in testConstructorWithEmptyMccMnc() 89 CellIdentityTdscdma ci = new CellIdentityTdscdma(MCC_STR, MNC_STR, LAC, CID, CPID); in testParcel() 102 new CellIdentityTdscdma(null, null, LAC, CID, CPID, ALPHA_LONG, ALPHA_SHORT); in testParcelWithUnknowMccMnc() 111 p.writeInt(CID); in testParcelWithUnknowMccMnc() [all …]
|
D | RILTest.java | 175 private static final int CID = 65535; field in RILTest 1119 cellinfo.cellIdentityGsm.cid = CID; in testConvertHalCellInfoListForGSM() 1146 LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR, EMPTY_ALPHA_LONG, EMPTY_ALPHA_SHORT); in testConvertHalCellInfoListForGSM() 1160 cellinfo.cellIdentityWcdma.cid = CID; in testConvertHalCellInfoListForWcdma() 1186 LAC, CID, PSC, UARFCN, MCC_STR, MNC_STR, EMPTY_ALPHA_LONG, EMPTY_ALPHA_SHORT); in testConvertHalCellInfoListForWcdma() 1312 LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForGSM() 1333 LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR, EMPTY_ALPHA_LONG, EMPTY_ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForGSMWithEmptyOperatorInfo() 1356 LAC, CID, ARFCN, BSIC, null, null, ALPHA_LONG, ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForGSMWithEmptyMccMnc() 1377 LAC, CID, PSC, UARFCN, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForWcdma() 1397 LAC, CID, PSC, UARFCN, MCC_STR, MNC_STR, EMPTY_ALPHA_LONG, EMPTY_ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForWcdmaWithEmptyOperatorInfo() [all …]
|
/frameworks/opt/telephony/src/java/android/telephony/ |
D | CellBroadcastMessage.java | 162 int cidColumn = cursor.getColumnIndex(Telephony.CellBroadcasts.CID); in createFromCursor() 265 cv.put(Telephony.CellBroadcasts.CID, location.getCid()); in getContentValues()
|
/frameworks/opt/telephony/proto/src/ |
D | carrierId.proto | 32 // CarrierId is the unique representation of a carrier in CID table.
|
/frameworks/base/telephony/java/android/provider/ |
D | Telephony.java | 2977 public static final String CID = "cid"; field in Telephony.CellBroadcasts 3086 CID,
|