Home
last modified time | relevance | path

Searched refs:tac (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCellIdentityTest.java102 int tac = 1; in testCellIdentityLte_asCellLocation() local
104 CellIdentity cellIdentity = new CellIdentityLte(123, 456, ci, 7, tac); in testCellIdentityLte_asCellLocation()
109 assertEquals(tac, gsmCellLocation.getLac()); in testCellIdentityLte_asCellLocation()
131 int tac = 1; in testCellIdentityNr_asCellLocation() local
133 new CellIdentityNr(123, tac, 789, null, null, null, 321, null, null, EMPTY_SET); in testCellIdentityNr_asCellLocation()
138 assertEquals(tac, gsmCellLocation.getLac()); in testCellIdentityNr_asCellLocation()
DCellInfoTest.java576 int tac = nr.getTac(); in verifyCellIdentityNr() local
577 assertTrue("getTac() out of range [0, 16777215], tac = " + tac, in verifyCellIdentityNr()
578 (tac == Integer.MAX_VALUE) || (0 <= tac && tac <= 16777215)); in verifyCellIdentityNr()
602 assertTrue("TAC is required for registered cells", tac != CellInfo.UNAVAILABLE); in verifyCellIdentityNr()
684 int tac = lte.getTac(); in verifyCellIdentityLte() local
685 assertTrue("getTac() out of range [0,65535], tac=" + tac, in verifyCellIdentityLte()
686 (tac == CellInfo.UNAVAILABLE) || (tac >= 0 && tac <= TAC)); in verifyCellIdentityLte()
738 assertTrue("TAC is required for registered cells", tac != CellInfo.UNAVAILABLE); in verifyCellIdentityLte()
DTelephonyManagerTest.java1498 String tac = mTelephonyManager.getTypeAllocationCode(); in testGetTac() local
1502 if (tac == null || imei == null) { in testGetTac()
1508 assertEquals(imei.substring(0, 8), tac); in testGetTac()