Searched refs:tac (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | CellIdentityTest.java | 102 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()
|
D | CellInfoTest.java | 592 int tac = nr.getTac(); in verifyCellIdentityNr() local 593 assertTrue("getTac() out of range [0, 16777215], tac = " + tac, in verifyCellIdentityNr() 594 (tac == Integer.MAX_VALUE) || (0 <= tac && tac <= 16777215)); in verifyCellIdentityNr() 618 assertTrue("TAC is required for registered cells", tac != CellInfo.UNAVAILABLE); in verifyCellIdentityNr() 703 int tac = lte.getTac(); in verifyCellIdentityLte() local 704 assertTrue("getTac() out of range [0,65535], tac=" + tac, in verifyCellIdentityLte() 705 (tac == CellInfo.UNAVAILABLE) || (tac >= 0 && tac <= TAC)); in verifyCellIdentityLte() 758 assertTrue("TAC is required for registered cells", tac != CellInfo.UNAVAILABLE); in verifyCellIdentityLte()
|
D | TelephonyManagerTest.java | 2251 String tac = mTelephonyManager.getTypeAllocationCode(); in testGetTac() local 2255 if (tac == null || imei == null) { in testGetTac() 2261 assertEquals(imei.substring(0, 8), tac); in testGetTac()
|
/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/ |
D | MockNetworkConfig.java | 158 lte.cellIdentityLte.tac = Integer.parseInt(parser.nextText().trim()); in loadLteCellIdentity()
|