Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCellIdentityTest.java76 int cid = 456; in testCellIdentityGsm_asCellLocation() local
78 new CellIdentityGsm(lac, cid, 0, 0, null, null, null, null, EMPTY_SET); in testCellIdentityGsm_asCellLocation()
84 assertEquals(cid, gsmCellLocation.getCid()); in testCellIdentityGsm_asCellLocation()
148 int cid = 456; in testCellIdentityTdscdma_asCellLocation() local
150 new CellIdentityTdscdma(null, null, lac, cid, 0, 0, null, null, EMPTY_SET, null); in testCellIdentityTdscdma_asCellLocation()
156 assertEquals(cid, gsmCellLocation.getCid()); in testCellIdentityTdscdma_asCellLocation()
175 int cid = 456; in testCellIdentityWcdma_asCellLocation() local
178 new CellIdentityWcdma(lac, cid, psc, 0, null, null, null, null, EMPTY_SET, null); in testCellIdentityWcdma_asCellLocation()
184 assertEquals(cid, gsmCellLocation.getCid()); in testCellIdentityWcdma_asCellLocation()
DCellInfoTest.java863 int cid = wcdma.getCid(); in verifyCellIdentityWcdma() local
864 assertTrue("getCid() out of range [0, 268435455], cid=" + cid, in verifyCellIdentityWcdma()
865 (cid >= 0 && cid <= CID_UMTS) || cid == CellInfo.UNAVAILABLE); in verifyCellIdentityWcdma()
890 assertTrue("CID is required for registered cells", cid != CellInfo.UNAVAILABLE); in verifyCellIdentityWcdma()
986 int cid = gsm.getCid(); in verifyCellIdentityGsm() local
987 assertTrue("getCid() out range [0, 65535], cid=" + cid, in verifyCellIdentityGsm()
988 cid == CellInfo.UNAVAILABLE || (cid >= 0 && cid <= CID_GSM)); in verifyCellIdentityGsm()
1006 assertTrue("CID is required for registered cells", cid != CellInfo.UNAVAILABLE); in verifyCellIdentityGsm()
1103 int cid = tdscdma.getCid(); in verifyCellIdentityTdscdma() local
1104 assertTrue("getCid() out of range [0, 268435455], cid=" + cid, in verifyCellIdentityTdscdma()
[all …]
DPhoneStateListenerTest.java1144 public void onRegistrationFailed(CellIdentity cid, String chosenPlmn, in testOnRegistrationFailed()
DTelephonyCallbackTest.java1200 public void onRegistrationFailed(CellIdentity cid, String chosenPlmn, in onRegistrationFailed() argument
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-11173/
Dpoc.c112 int cid = 3; in trigger() local
123 ret = ioctl(dev_fd, FASTRPC_IOCTL_GETINFO, &cid); in trigger()