Lines Matching refs:lac
505 int lac = CellInfo.UNAVAILABLE; in getLacAndCid() local
508 lac = ((CellIdentityGsm) ci).getLac(); in getLacAndCid()
511 lac = ((CellIdentityWcdma) ci).getLac(); in getLacAndCid()
514 lac = ((CellIdentityTdscdma) ci).getLac(); in getLacAndCid()
517 lac = ((CellIdentityLte) ci).getTac(); in getLacAndCid()
520 lac = ((CellIdentityNr) ci).getTac(); in getLacAndCid()
524 if (lac != CellInfo.UNAVAILABLE || cid != CellInfo.UNAVAILABLE) { in getLacAndCid()
525 return Pair.create(lac, cid); in getLacAndCid()
612 int lac = -1; in handleGsmBroadcastSms() local
617 lac = lacAndCid.first; in handleGsmBroadcastSms()
621 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in handleGsmBroadcastSms()
668 if (!info.matchesLocation(plmn, lac, cid)) { in handleGsmBroadcastSms()
781 public boolean matchesLocation(String plmn, int lac, int cid) { in matchesLocation() argument
782 return mLocation.isInLocationArea(plmn, lac, cid); in matchesLocation()