Home
last modified time | relevance | path

Searched refs:cellIdentity (Results 1 – 4 of 4) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DCellInfoUtil.java52 public static CellInfo wrapCellInfoWithCellIdentity(CellIdentity cellIdentity) { in wrapCellInfoWithCellIdentity() argument
53 if (cellIdentity instanceof CellIdentityLte) { in wrapCellInfoWithCellIdentity()
55 cellInfo.setCellIdentity((CellIdentityLte) cellIdentity); in wrapCellInfoWithCellIdentity()
57 } else if (cellIdentity instanceof CellIdentityCdma) { in wrapCellInfoWithCellIdentity()
59 cellInfo.setCellIdentity((CellIdentityCdma) cellIdentity); in wrapCellInfoWithCellIdentity()
61 } else if (cellIdentity instanceof CellIdentityWcdma) { in wrapCellInfoWithCellIdentity()
63 cellInfo.setCellIdentity((CellIdentityWcdma) cellIdentity); in wrapCellInfoWithCellIdentity()
65 } else if (cellIdentity instanceof CellIdentityGsm) { in wrapCellInfoWithCellIdentity()
67 cellInfo.setCellIdentity((CellIdentityGsm) cellIdentity); in wrapCellInfoWithCellIdentity()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/telephony/
DCellInfoUtil.java52 public static CellInfo wrapCellInfoWithCellIdentity(CellIdentity cellIdentity) { in wrapCellInfoWithCellIdentity() argument
53 if (cellIdentity instanceof CellIdentityLte) { in wrapCellInfoWithCellIdentity()
55 cellInfo.setCellIdentity((CellIdentityLte) cellIdentity); in wrapCellInfoWithCellIdentity()
57 } else if (cellIdentity instanceof CellIdentityCdma) { in wrapCellInfoWithCellIdentity()
59 cellInfo.setCellIdentity((CellIdentityCdma) cellIdentity); in wrapCellInfoWithCellIdentity()
61 } else if (cellIdentity instanceof CellIdentityWcdma) { in wrapCellInfoWithCellIdentity()
63 cellInfo.setCellIdentity((CellIdentityWcdma) cellIdentity); in wrapCellInfoWithCellIdentity()
65 } else if (cellIdentity instanceof CellIdentityGsm) { in wrapCellInfoWithCellIdentity()
67 cellInfo.setCellIdentity((CellIdentityGsm) cellIdentity); in wrapCellInfoWithCellIdentity()
DNetworkSelectSettings.java327 CellIdentity cellIdentity = networkList.get(0).getCellIdentity(); in forceUpdateConnectedPreferenceCategory() local
328 CellInfo cellInfo = CellInfoUtil.wrapCellInfoWithCellIdentity(cellIdentity); in forceUpdateConnectedPreferenceCategory()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DNetworkSelectSettings.java410 final CellIdentity cellIdentity = regInfo.getCellIdentity(); in forceUpdateConnectedPreferenceCategory() local
411 if (cellIdentity != null) { in forceUpdateConnectedPreferenceCategory()
413 getPrefContext(), cellIdentity, mForbiddenPlmns, mShow4GForLTE); in forceUpdateConnectedPreferenceCategory()