/frameworks/base/services/core/java/com/android/server/emergency/ |
D | EmergencyAffordanceService.java | 77 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/ |
D | LocaleTracker.java | 185 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()
|
D | PhoneNotifier.java | 52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
|
D | DefaultPhoneNotifier.java | 224 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument 228 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfo()
|
D | RadioResponse.java | 1008 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()
|
D | Phone.java | 2192 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument 2193 mNotifier.notifyCellInfo(this, privatizeCellInfoList(cellInfo)); in notifyCellInfo()
|
/frameworks/base/telephony/java/android/telephony/ |
D | PhoneStateListener.java | 522 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/ |
D | ITelephonyRegistry.aidl | 60 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument 69 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
|
D | IPhoneStateListener.aidl | 43 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkMonitor.java | 1292 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/ |
D | TelephonyRegistryMock.java | 276 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument 309 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
|
D | PhoneMock.java | 581 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | TestPhoneNotifier.java.broken | 67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
|
D | ServiceStateTrackerTest.java | 348 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p); in testCellInfoList() local 351 list.add(cellInfo); in testCellInfoList()
|
/frameworks/base/services/core/java/com/android/server/ |
D | TelephonyRegistry.java | 980 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/ |
D | SimulatedCommands.java | 1905 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p); in getCellInfoList() local 1908 mCellInfoList.add(cellInfo); in getCellInfoList()
|