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/net/wifi/service/java/com/android/server/wifi/
DCellularLinkLayerStatsCollector.java195 CellInfo cellInfo = cellInfoList.get(i); in getPrimaryCellInfo() local
196 if ((cellInfo instanceof CellInfoTdscdma && networkType == NETWORK_TYPE_TD_SCDMA) in getPrimaryCellInfo()
197 || (cellInfo instanceof CellInfoCdma && (networkType == NETWORK_TYPE_CDMA in getPrimaryCellInfo()
199 || (cellInfo instanceof CellInfoLte && networkType == NETWORK_TYPE_LTE) in getPrimaryCellInfo()
200 || (cellInfo instanceof CellInfoWcdma && networkType == NETWORK_TYPE_UMTS) in getPrimaryCellInfo()
201 || (cellInfo instanceof CellInfoGsm && networkType == NETWORK_TYPE_GSM) in getPrimaryCellInfo()
202 || (cellInfo instanceof CellInfoNr && networkType == NETWORK_TYPE_NR)) { in getPrimaryCellInfo()
203 primaryCellInfo = cellInfo; in getPrimaryCellInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DLocaleTracker.java216 for (CellInfo cellInfo : mCellInfoList) { in getMccFromCellInfo()
218 if (cellInfo instanceof CellInfoGsm) { in getMccFromCellInfo()
219 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
220 } else if (cellInfo instanceof CellInfoLte) { in getMccFromCellInfo()
221 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
222 } else if (cellInfo instanceof CellInfoWcdma) { in getMccFromCellInfo()
223 mcc = ((CellInfoWcdma) cellInfo).getCellIdentity().getMccString(); in getMccFromCellInfo()
DPhoneNotifier.java59 void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
DRadioResponse.java1102 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) { in getCellInfoListResponse() argument
1103 responseCellInfoList(responseInfo, cellInfo); in getCellInfoListResponse()
1112 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) { in getCellInfoListResponse_1_2() argument
1113 responseCellInfoList_1_2(responseInfo, cellInfo); in getCellInfoListResponse_1_2()
1122 ArrayList<android.hardware.radio.V1_4.CellInfo> cellInfo) { in getCellInfoListResponse_1_4() argument
1123 responseCellInfoList_1_4(responseInfo, cellInfo); in getCellInfoListResponse_1_4()
2134 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) { in responseCellInfoList() argument
2138 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList(cellInfo); in responseCellInfoList()
2148 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) { in responseCellInfoList_1_2() argument
2152 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList_1_2(cellInfo); in responseCellInfoList_1_2()
[all …]
DDefaultPhoneNotifier.java233 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
237 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfo()
DServiceStateTracker.java1096 List<CellInfo> cellInfo = null; in handleMessage() local
1106 cellInfo = (List<CellInfo>) ar.result; in handleMessage()
1107 updateOperatorNameForCellInfo(cellInfo); in handleMessage()
1108 mLastCellInfoList = cellInfo; in handleMessage()
1109 mPhone.notifyCellInfo(cellInfo); in handleMessage()
1111 log("CELL_INFO_LIST: size=" + cellInfo.size() + " list=" + cellInfo); in handleMessage()
1137 AsyncResult.forMessage(m, cellInfo, ex); in handleMessage()
5405 for (CellInfo cellInfo : cellInfos) { in updateOperatorNameForCellInfo()
5406 if (cellInfo.isRegistered()) { in updateOperatorNameForCellInfo()
5407 updateOperatorNameForCellIdentity(cellInfo.getCellIdentity()); in updateOperatorNameForCellInfo()
DPhone.java2373 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
2374 AsyncResult ar = new AsyncResult(null, cellInfo, null); in notifyCellInfo()
2377 mNotifier.notifyCellInfo(this, cellInfo); in notifyCellInfo()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl70 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument
80 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
DIPhoneStateListener.aidl46 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
/frameworks/base/telephony/java/android/telephony/
DPhoneStateListener.java643 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
1050 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
1055 () -> mExecutor.execute(() -> psl.onCellInfoChanged(cellInfo))); in onCellInfoChanged()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java351 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
397 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
DPhoneMock.java579 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) {
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java1223 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
1224 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellInfo); in notifyCellInfo()
1227 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
1233 + " cellInfo=" + cellInfo); in notifyCellInfoForSubscriber()
1238 mCellInfo.set(phoneId, cellInfo); in notifyCellInfoForSubscriber()
1245 log("notifyCellInfo: mCellInfo=" + cellInfo + " r=" + r); in notifyCellInfoForSubscriber()
1247 r.callback.onCellInfoChanged(cellInfo); in notifyCellInfoForSubscriber()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...