Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java669 private RadioAccessSpecifier getRadioAccessSpecifier(CellInfo cellInfo) { in getRadioAccessSpecifier() argument
671 if (cellInfo instanceof CellInfoLte) { in getRadioAccessSpecifier()
673 int[] lteChannels = {((CellInfoLte) cellInfo).getCellIdentity().getEarfcn()}; in getRadioAccessSpecifier()
675 } else if (cellInfo instanceof CellInfoWcdma) { in getRadioAccessSpecifier()
677 int[] wcdmaChannels = {((CellInfoWcdma) cellInfo).getCellIdentity().getUarfcn()}; in getRadioAccessSpecifier()
679 } else if (cellInfo instanceof CellInfoGsm) { in getRadioAccessSpecifier()
681 int[] gsmChannels = {((CellInfoGsm) cellInfo).getCellIdentity().getArfcn()}; in getRadioAccessSpecifier()
1606 android.hardware.radio.V1_4.CellInfo cellInfo = new android.hardware.radio.V1_4.CellInfo(); in getCellInfo_1_4ForLte() local
1607 cellInfo.isRegistered = REGISTERED; in getCellInfo_1_4ForLte()
1608 cellInfo.connectionStatus = CONNECTION_STATUS; in getCellInfo_1_4ForLte()
[all …]
DTelephonyRegistryTest.java261 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
263 mCellInfo = cellInfo; in onCellInfoChanged()
/frameworks/base/telephony/java/android/telephony/
DCellInfo.java257 CellInfo cellInfo = (CellInfo) o; in equals()
258 return mCellConnectionStatus == cellInfo.mCellConnectionStatus in equals()
259 && mRegistered == cellInfo.mRegistered in equals()
260 && mTimeStamp == cellInfo.mTimeStamp; in equals()
DTelephonyManager.java7057 public abstract void onCellInfo(@NonNull List<CellInfo> cellInfo); in onCellInfo() argument
7143 public void onCellInfo(List<CellInfo> cellInfo) { in requestCellInfoUpdate() argument
7146 executor.execute(() -> callback.onCellInfo(cellInfo)); in requestCellInfoUpdate()
7210 public void onCellInfo(List<CellInfo> cellInfo) { in requestCellInfoUpdate() argument
7213 executor.execute(() -> callback.onCellInfo(cellInfo)); in requestCellInfoUpdate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DLocaleTracker.java291 for (CellInfo cellInfo : mCellInfoList) { in getMccFromCellInfo()
292 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccFromCellInfo()
326 for (CellInfo cellInfo : mCellInfoList) { in getMccMncFromCellInfo()
327 String mcc = cellInfo.getCellIdentity().getMccString(); in getMccMncFromCellInfo()
329 String mnc = cellInfo.getCellIdentity().getMncString(); in getMccMncFromCellInfo()
DRadioResponse.java1307 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) { in getCellInfoListResponse() argument
1316 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) { in getCellInfoListResponse_1_2() argument
1325 ArrayList<android.hardware.radio.V1_4.CellInfo> cellInfo) { in getCellInfoListResponse_1_4() argument
1326 responseCellInfoList(responseInfo, cellInfo); in getCellInfoListResponse_1_4()
1334 ArrayList<android.hardware.radio.V1_5.CellInfo> cellInfo) { in getCellInfoListResponse_1_5() argument
1335 responseCellInfoList(responseInfo, cellInfo); in getCellInfoListResponse_1_5()
1344 ArrayList<android.hardware.radio.V1_6.CellInfo> cellInfo) { in getCellInfoListResponse_1_6() argument
1345 responseCellInfoList_1_6(responseInfo, cellInfo); in getCellInfoListResponse_1_6()
2501 ArrayList<? extends Object> cellInfo) { in responseCellInfoList() argument
2505 ArrayList<CellInfo> ret = RILUtils.convertHalCellInfoList((ArrayList<Object>) cellInfo); in responseCellInfoList()
[all …]
DPhoneNotifier.java84 void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
DDefaultPhoneNotifier.java160 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
162 mTelephonyRegistryMgr.notifyCellInfoChanged(subId, cellInfo); in notifyCellInfo()
DNetworkResponse.java130 android.hardware.radio.network.CellInfo[] cellInfo) { in getCellInfoListResponse() argument
134 ArrayList<CellInfo> ret = RILUtils.convertHalCellInfoList(cellInfo); in getCellInfoListResponse()
DServiceStateTracker.java1249 List<CellInfo> cellInfo = null; in handleMessage() local
1259 cellInfo = (List<CellInfo>) ar.result; in handleMessage()
1260 updateOperatorNameForCellInfo(cellInfo); in handleMessage()
1261 mLastCellInfoList = cellInfo; in handleMessage()
1262 mPhone.notifyCellInfo(cellInfo); in handleMessage()
1264 log("CELL_INFO_LIST: size=" + cellInfo.size() + " list=" + cellInfo); in handleMessage()
1294 AsyncResult.forMessage(m, cellInfo, ex); in handleMessage()
5728 for (CellInfo cellInfo : cellInfos) { in updateOperatorNameForCellInfo()
5729 if (cellInfo.isRegistered()) { in updateOperatorNameForCellInfo()
5730 updateOperatorNameForCellIdentity(cellInfo.getCellIdentity()); in updateOperatorNameForCellInfo()
DRILUtils.java2286 private static CellInfo convertHalCellInfo(Object cellInfo, long nanotime) { in convertHalCellInfo() argument
2287 if (cellInfo == null) return null; in convertHalCellInfo()
2304 if (cellInfo instanceof android.hardware.radio.V1_4.CellInfo) { in convertHalCellInfo()
2306 (android.hardware.radio.V1_4.CellInfo) cellInfo; in convertHalCellInfo()
2350 } else if (cellInfo instanceof android.hardware.radio.V1_5.CellInfo) { in convertHalCellInfo()
2352 (android.hardware.radio.V1_5.CellInfo) cellInfo; in convertHalCellInfo()
2404 } else if (cellInfo instanceof android.hardware.radio.V1_6.CellInfo) { in convertHalCellInfo()
2406 (android.hardware.radio.V1_6.CellInfo) cellInfo; in convertHalCellInfo()
2488 private static CellInfo convertHalCellInfo(android.hardware.radio.network.CellInfo cellInfo, in convertHalCellInfo() argument
2490 if (cellInfo == null) return null; in convertHalCellInfo()
[all …]
DPhone.java2924 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
2925 AsyncResult ar = new AsyncResult(null, cellInfo, null); in notifyCellInfo()
2928 mNotifier.notifyCellInfo(this, cellInfo); in notifyCellInfo()
/frameworks/base/core/java/com/android/internal/telephony/
DITelephonyRegistry.aidl70 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument
75 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
DIPhoneStateListener.aidl52 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
/frameworks/base/core/java/android/telephony/
DPhoneStateListener.java821 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
1422 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
1427 () -> mExecutor.execute(() -> psl.onCellInfoChanged(cellInfo))); in onCellInfoChanged()
DTelephonyCallback.java935 void onCellInfoChanged(@NonNull List<CellInfo> cellInfo); in onCellInfoChanged() argument
1827 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
1832 () -> mExecutor.execute(() -> listener.onCellInfoChanged(cellInfo))); in onCellInfoChanged()
DTelephonyRegistryManager.java912 public void notifyCellInfoChanged(int subId, @NonNull List<CellInfo> cellInfo) { in notifyCellInfoChanged() argument
914 sRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfoChanged()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java1935 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
1936 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellInfo); in notifyCellInfo()
1939 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
1946 + " cellInfo=" + cellInfo); in notifyCellInfoForSubscriber()
1949 if (cellInfo == null) { in notifyCellInfoForSubscriber()
1951 cellInfo = Collections.EMPTY_LIST; in notifyCellInfoForSubscriber()
1957 mCellInfo.set(phoneId, cellInfo); in notifyCellInfoForSubscriber()
1966 log("notifyCellInfoForSubscriber: mCellInfo=" + cellInfo in notifyCellInfoForSubscriber()
1969 r.callback.onCellInfoChanged(cellInfo); in notifyCellInfoForSubscriber()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...