Lines Matching refs:ci
503 private @Nullable Pair<Integer, Integer> getLacAndCid(CellIdentity ci) { in getLacAndCid() argument
504 if (ci == null) return null; in getLacAndCid()
507 if (ci instanceof CellIdentityGsm) { in getLacAndCid()
508 lac = ((CellIdentityGsm) ci).getLac(); in getLacAndCid()
509 cid = ((CellIdentityGsm) ci).getCid(); in getLacAndCid()
510 } else if (ci instanceof CellIdentityWcdma) { in getLacAndCid()
511 lac = ((CellIdentityWcdma) ci).getLac(); in getLacAndCid()
512 cid = ((CellIdentityWcdma) ci).getCid(); in getLacAndCid()
513 } else if ((ci instanceof CellIdentityTdscdma)) { in getLacAndCid()
514 lac = ((CellIdentityTdscdma) ci).getLac(); in getLacAndCid()
515 cid = ((CellIdentityTdscdma) ci).getCid(); in getLacAndCid()
516 } else if (ci instanceof CellIdentityLte) { in getLacAndCid()
517 lac = ((CellIdentityLte) ci).getTac(); in getLacAndCid()
518 cid = ((CellIdentityLte) ci).getCi(); in getLacAndCid()
519 } else if (ci instanceof CellIdentityNr) { in getLacAndCid()
520 lac = ((CellIdentityNr) ci).getTac(); in getLacAndCid()
521 cid = ((CellIdentityNr) ci).getPci(); in getLacAndCid()