Home
last modified time | relevance | path

Searched refs:cellInfo (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/services/core/java/com/android/server/emergency/
DEmergencyAffordanceService.java77 public void onCellInfoChanged(List<CellInfo> cellInfo) {
276 for (CellInfo cellInfo : cellInfos) { in handleUpdateCellInfo()
278 if (cellInfo instanceof CellInfoGsm) { in handleUpdateCellInfo()
279 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMcc(); in handleUpdateCellInfo()
280 } else if (cellInfo instanceof CellInfoLte) { in handleUpdateCellInfo()
281 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMcc(); in handleUpdateCellInfo()
282 } else if (cellInfo instanceof CellInfoWcdma) { in handleUpdateCellInfo()
283 mcc = ((CellInfoWcdma) cellInfo).getCellIdentity().getMcc(); in handleUpdateCellInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DLocaleTracker.java185 for (CellInfo cellInfo : mCellInfo) { in getMccFromCellInfo()
187 if (cellInfo instanceof CellInfoGsm) { in getMccFromCellInfo()
188 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
189 } else if (cellInfo instanceof CellInfoLte) { in getMccFromCellInfo()
190 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
191 } else if (cellInfo instanceof CellInfoWcdma) { in getMccFromCellInfo()
192 mcc = ((CellInfoWcdma) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
DPhoneNotifier.java52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
DDefaultPhoneNotifier.java224 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
228 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfo()
DRadioResponse.java1008 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) { in getCellInfoListResponse() argument
1009 responseCellInfoList(responseInfo, cellInfo); in getCellInfoListResponse()
1018 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) { in getCellInfoListResponse_1_2() argument
1019 responseCellInfoList_1_2(responseInfo, cellInfo); in getCellInfoListResponse_1_2()
1934 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) { in responseCellInfoList() argument
1938 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList(cellInfo); in responseCellInfoList()
1948 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) { in responseCellInfoList_1_2() argument
1952 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList_1_2(cellInfo); in responseCellInfoList_1_2()
DPhone.java2192 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
2193 mNotifier.notifyCellInfo(this, privatizeCellInfoList(cellInfo)); in notifyCellInfo()
/frameworks/base/telephony/java/android/telephony/
DPhoneStateListener.java522 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
692 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
693 send(LISTEN_CELL_INFO, 0, 0, cellInfo); in onCellInfoChanged()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl60 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument
69 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
DIPhoneStateListener.aidl43 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkMonitor.java1292 for (CellInfo cellInfo : info) { in sendNetworkConditionsBroadcast()
1293 if (cellInfo.isRegistered()) { in sendNetworkConditionsBroadcast()
1300 if (cellInfo instanceof CellInfoCdma) { in sendNetworkConditionsBroadcast()
1301 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
1303 } else if (cellInfo instanceof CellInfoGsm) { in sendNetworkConditionsBroadcast()
1304 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
1306 } else if (cellInfo instanceof CellInfoLte) { in sendNetworkConditionsBroadcast()
1307 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
1309 } else if (cellInfo instanceof CellInfoWcdma) { in sendNetworkConditionsBroadcast()
1310 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java276 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
309 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
DPhoneMock.java581 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTestPhoneNotifier.java.broken67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
DServiceStateTrackerTest.java348 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p); in testCellInfoList() local
351 list.add(cellInfo); in testCellInfoList()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java980 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
981 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellInfo); in notifyCellInfo()
984 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
990 + " cellInfo=" + cellInfo); in notifyCellInfoForSubscriber()
995 mCellInfo.set(phoneId, cellInfo); in notifyCellInfoForSubscriber()
1002 log("notifyCellInfo: mCellInfo=" + cellInfo + " r=" + r); in notifyCellInfoForSubscriber()
1004 r.callback.onCellInfoChanged(cellInfo); in notifyCellInfoForSubscriber()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java1905 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p); in getCellInfoList() local
1908 mCellInfoList.add(cellInfo); in getCellInfoList()