Home
last modified time | relevance | path

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

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCellInfoTest.java520 int tac = nr.getTac(); in verifyCellIdentityNr() local
521 assertTrue("getTac() out of range [0, 65536], tac = " + tac, 0 <= tac && tac <= 65536); in verifyCellIdentityNr()
539 assertTrue("TAC is required for registered cells", tac != Integer.MAX_VALUE); in verifyCellIdentityNr()
594 int tac = lte.getTac(); in verifyCellIdentityLte() local
595 assertTrue("getTac() out of range [0,65535], tac=" + tac, in verifyCellIdentityLte()
596 (tac == Integer.MAX_VALUE) || (tac >= 0 && tac <= TAC)); in verifyCellIdentityLte()
633 assertTrue("TAC is required for registered cells", tac != Integer.MAX_VALUE); in verifyCellIdentityLte()
DTelephonyManagerTest.java808 String tac = mTelephonyManager.getTypeAllocationCode(); in testGetTac() local
812 if (tac == null || imei == null) { in testGetTac()
818 assertEquals(imei.substring(0, 8), tac); in testGetTac()