Lines Matching refs:lac
546 int lac = CellInfo.UNAVAILABLE; in getLacAndCid() local
549 lac = ((CellIdentityGsm) ci).getLac(); in getLacAndCid()
552 lac = ((CellIdentityWcdma) ci).getLac(); in getLacAndCid()
555 lac = ((CellIdentityTdscdma) ci).getLac(); in getLacAndCid()
558 lac = ((CellIdentityLte) ci).getTac(); in getLacAndCid()
561 lac = ((CellIdentityNr) ci).getTac(); in getLacAndCid()
565 if (lac != CellInfo.UNAVAILABLE || cid != CellInfo.UNAVAILABLE) { in getLacAndCid()
566 return Pair.create(lac, cid); in getLacAndCid()
653 int lac = -1; in handleGsmBroadcastSms() local
658 lac = lacAndCid.first; in handleGsmBroadcastSms()
662 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in handleGsmBroadcastSms()
709 if (!info.matchesLocation(plmn, lac, cid)) { in handleGsmBroadcastSms()
822 public boolean matchesLocation(String plmn, int lac, int cid) { in matchesLocation() argument
823 return mLocation.isInLocationArea(plmn, lac, cid); in matchesLocation()