Home
last modified time | relevance | path

Searched refs:cellIdentity (Results 1 – 2 of 2) 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/apps/Settings/src/com/android/settings/network/telephony/
DNetworkSelectSettings.java456 final CellIdentity cellIdentity = regInfo.getCellIdentity(); in forceUpdateConnectedPreferenceCategory() local
457 if (cellIdentity == null) { in forceUpdateConnectedPreferenceCategory()
461 getPrefContext(), cellIdentity, mForbiddenPlmns, mShow4GForLTE); in forceUpdateConnectedPreferenceCategory()