Home
last modified time | relevance | path

Searched refs:getCellIdentity (Results 1 – 12 of 12) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DCellInfoUtil.java103 (String) lte.getCellIdentity().getOperatorAlphaLong(), in getOperatorInfoFromCellInfo()
104 (String) lte.getCellIdentity().getOperatorAlphaShort(), in getOperatorInfoFromCellInfo()
105 lte.getCellIdentity().getMobileNetworkOperator()); in getOperatorInfoFromCellInfo()
109 (String) wcdma.getCellIdentity().getOperatorAlphaLong(), in getOperatorInfoFromCellInfo()
110 (String) wcdma.getCellIdentity().getOperatorAlphaShort(), in getOperatorInfoFromCellInfo()
111 wcdma.getCellIdentity().getMobileNetworkOperator()); in getOperatorInfoFromCellInfo()
115 (String) gsm.getCellIdentity().getOperatorAlphaLong(), in getOperatorInfoFromCellInfo()
116 (String) gsm.getCellIdentity().getOperatorAlphaShort(), in getOperatorInfoFromCellInfo()
117 gsm.getCellIdentity().getMobileNetworkOperator()); in getOperatorInfoFromCellInfo()
121 (String) cdma.getCellIdentity().getOperatorAlphaLong(), in getOperatorInfoFromCellInfo()
[all …]
DPhoneInterfaceManager.java1537 phone.getCellIdentity(ws, obtainMessage(EVENT_GET_CELL_LOCATION_DONE, request)); in handleMessage()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DCellInfoUtil.java84 public static CellIdentity getCellIdentity(CellInfo cellInfo) { in getCellIdentity() method in CellInfoUtil
90 cellId = ((CellInfoGsm) cellInfo).getCellIdentity(); in getCellIdentity()
92 cellId = ((CellInfoCdma) cellInfo).getCellIdentity(); in getCellIdentity()
94 cellId = ((CellInfoWcdma) cellInfo).getCellIdentity(); in getCellIdentity()
96 cellId = ((CellInfoTdscdma) cellInfo).getCellIdentity(); in getCellIdentity()
98 cellId = ((CellInfoLte) cellInfo).getCellIdentity(); in getCellIdentity()
100 cellId = ((CellInfoNr) cellInfo).getCellIdentity(); in getCellIdentity()
145 final CellIdentity cid = getCellIdentity(cellInfo); in cellInfoToString()
DNetworkSelectSettings.java325 String plmn = CellInfoUtil.getNetworkTitle(cellInfo.getCellIdentity(), in doAggregation()
326 CellInfoUtil.getCellIdentityMccMnc(cellInfo.getCellIdentity())); in doAggregation()
331 String itemPlmn = CellInfoUtil.getNetworkTitle(item.getCellIdentity(), in doAggregation()
332 CellInfoUtil.getCellIdentityMccMnc(item.getCellIdentity())); in doAggregation()
456 final CellIdentity cellIdentity = regInfo.getCellIdentity(); in forceUpdateConnectedPreferenceCategory()
DNetworkOperatorPreference.java89 updateCell(cellinfo, CellInfoUtil.getCellIdentity(cellinfo)); in updateCell()
105 return mCellId.equals(CellInfoUtil.getCellIdentity(cellinfo)); in isSameCell()
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgSelectorTest.java355 when(mMockCellInfoGsm.getCellIdentity()).thenReturn(mMockCellIdentityGsm); in testCellularResolutionMethod()
362 when(mMockCellInfoWcdma.getCellIdentity()).thenReturn(mMockCellIdentityWcdma); in testCellularResolutionMethod()
369 when(mMockCellInfoLte.getCellIdentity()).thenReturn(mMockCellIdentityLte); in testCellularResolutionMethod()
376 when(mMockCellInfoNr.getCellIdentity()).thenReturn(mMockCellIdentityNr); in testCellularResolutionMethod()
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgSelector.java404 CellIdentityGsm gsmCellId = ((CellInfoGsm) cellInfo).getCellIdentity(); in resolutionMethodCellularLoc()
409 CellIdentityWcdma wcdmaCellId = ((CellInfoWcdma) cellInfo).getCellIdentity(); in resolutionMethodCellularLoc()
414 CellIdentityLte lteCellId = ((CellInfoLte) cellInfo).getCellIdentity(); in resolutionMethodCellularLoc()
452 (CellIdentityNr) ((CellInfoNr) cellInfo).getCellIdentity(); in resolutionMethodCellularLoc()
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSNetworkScanCtlr.java225 return ((CellInfoLte) cellInfo).getCellIdentity().getMccString() in getMccMnc()
226 + ((CellInfoLte) cellInfo).getCellIdentity().getMncString(); in getMccMnc()
DONSProfileSelector.java268 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMccString(); in getMcc()
277 mnc = ((CellInfoLte) cellInfo).getCellIdentity().getMncString(); in getMnc()
/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
DGsmCellBroadcastHandler.java557 cellIdentityList.add(nri.getCellIdentity()); in getLacAndCid()
564 cellIdentityList.add(nri.getCellIdentity()); in getLacAndCid()
572 infos.stream().map(CellInfo::getCellIdentity).collect(Collectors.toList())); in getLacAndCid()
/packages/services/Telephony/src/com/android/phone/settings/
DRadioInfo.java898 CellIdentityCdma cidCdma = ci.getCellIdentity(); in buildCdmaInfoString()
914 CellIdentityGsm cidGsm = ci.getCellIdentity(); in buildGsmInfoString()
929 CellIdentityLte cidLte = ci.getCellIdentity(); in buildLteInfoString()
948 CellIdentityWcdma cidWcdma = ci.getCellIdentity(); in buildWcdmaInfoString()
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java1843 return ((CellInfoGsm) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1845 return ((CellInfoLte) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1847 return ((CellInfoWcdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1849 return ((CellInfoTdscdma) cell).getCellIdentity().getMccString(); in getMccFromCellInfo()
1851 return ((CellIdentityNr) ((CellInfoNr) cell).getCellIdentity()).getMccString(); in getMccFromCellInfo()