Searched refs:cellInfo (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTestPhoneNotifier.java67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneStateListener.aidl41 void onCellInfoChanged(in List<CellInfo> cellInfo);
H A DITelephonyRegistry.aidl56 void notifyCellInfo(in List<CellInfo> cellInfo);
62 void notifyCellInfoForSubscriber(in long subId, in List<CellInfo> cellInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneNotifier.java52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); argument
H A DDefaultPhoneNotifier.java223 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { argument
227 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo);
H A DServiceStateTracker.java216 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) { argument
218 mCellInfo = cellInfo;
H A DPhoneBase.java1343 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
1344 mNotifier.notifyCellInfo(this, privatizeCellInfoList(cellInfo));
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java686 for (CellInfo cellInfo : info) {
687 if (cellInfo.isRegistered()) {
694 if (cellInfo instanceof CellInfoCdma) {
695 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity();
697 } else if (cellInfo instanceof CellInfoGsm) {
698 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity();
700 } else if (cellInfo instanceof CellInfoLte) {
701 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity();
703 } else if (cellInfo instanceof CellInfoWcdma) {
704 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo)
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java451 * @param cellInfo is the list of currently visible cells.
453 public void onCellInfoChanged(List<CellInfo> cellInfo) { argument
553 public void onCellInfoChanged(List<CellInfo> cellInfo) {
554 Message.obtain(mHandler, LISTEN_CELL_INFO, 0, 0, cellInfo).sendToTarget();
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java647 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
648 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUB_ID, cellInfo);
651 public void notifyCellInfoForSubscriber(long subId, List<CellInfo> cellInfo) { argument
657 + " cellInfo=" + cellInfo);
663 mCellInfo.set(phoneId, cellInfo);
670 log("notifyCellInfo: mCellInfo=" + cellInfo + " r=" + r);
672 r.callback.onCellInfoChanged(cellInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java175 protected CdmaServiceStateTracker(CDMAPhone phone, CellInfo cellInfo) { argument
176 super(phone, phone.mCi, cellInfo);

Completed in 942 milliseconds