Searched refs:lac (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | CellInfoTest.java | 730 int lac = wcdma.getLac(); in verifyCellIdentityWcdma() local 731 assertTrue("getLac() out of range [0, 65535], lac=" + lac, in verifyCellIdentityWcdma() 732 (lac >= 0 && lac <= LAC) || lac == Integer.MAX_VALUE); in verifyCellIdentityWcdma() 759 assertTrue("LAC is required for registered cells", lac != Integer.MAX_VALUE); in verifyCellIdentityWcdma() 829 int lac = gsm.getLac(); in verifyCellIdentityGsm() local 830 assertTrue("getLac() out of range [0, 65535], lac=" + lac, in verifyCellIdentityGsm() 831 lac == Integer.MAX_VALUE || (lac >= 0 && lac <= LAC)); in verifyCellIdentityGsm() 853 assertTrue("LAC is required for registered cells", lac != Integer.MAX_VALUE); in verifyCellIdentityGsm() 937 int lac = tdscdma.getLac(); in verifyCellIdentityTdscdma() local 938 assertTrue("getLac() out of range [0, 65535], lac=" + lac, in verifyCellIdentityTdscdma() [all …]
|