/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 669 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 …]
|
D | TelephonyRegistryTest.java | 261 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument 263 mCellInfo = cellInfo; in onCellInfoChanged()
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellInfo.java | 257 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()
|
D | TelephonyManager.java | 7057 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/ |
D | LocaleTracker.java | 291 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()
|
D | RadioResponse.java | 1307 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 …]
|
D | PhoneNotifier.java | 84 void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
|
D | DefaultPhoneNotifier.java | 160 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument 162 mTelephonyRegistryMgr.notifyCellInfoChanged(subId, cellInfo); in notifyCellInfo()
|
D | NetworkResponse.java | 130 android.hardware.radio.network.CellInfo[] cellInfo) { in getCellInfoListResponse() argument 134 ArrayList<CellInfo> ret = RILUtils.convertHalCellInfoList(cellInfo); in getCellInfoListResponse()
|
D | ServiceStateTracker.java | 1249 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()
|
D | RILUtils.java | 2286 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 …]
|
D | Phone.java | 2924 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/ |
D | ITelephonyRegistry.aidl | 70 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument 75 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
|
D | IPhoneStateListener.aidl | 52 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
|
/frameworks/base/core/java/android/telephony/ |
D | PhoneStateListener.java | 821 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()
|
D | TelephonyCallback.java | 935 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()
|
D | TelephonyRegistryManager.java | 912 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/ |
D | TelephonyRegistry.java | 1935 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/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |