Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkMonitor.java785 for (CellInfo cellInfo : info) { in sendNetworkConditionsBroadcast()
786 if (cellInfo.isRegistered()) { in sendNetworkConditionsBroadcast()
793 if (cellInfo instanceof CellInfoCdma) { in sendNetworkConditionsBroadcast()
794 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
796 } else if (cellInfo instanceof CellInfoGsm) { in sendNetworkConditionsBroadcast()
797 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
799 } else if (cellInfo instanceof CellInfoLte) { in sendNetworkConditionsBroadcast()
800 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
802 } else if (cellInfo instanceof CellInfoWcdma) { in sendNetworkConditionsBroadcast()
803 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo).getCellIdentity(); in sendNetworkConditionsBroadcast()
/frameworks/base/telephony/java/android/telephony/
DPhoneStateListener.java455 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
555 public void onCellInfoChanged(List<CellInfo> cellInfo) {
556 Message.obtain(mHandler, LISTEN_CELL_INFO, 0, 0, cellInfo).sendToTarget();
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl61 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument
67 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
DIPhoneStateListener.aidl41 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTestPhoneNotifier.java67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneNotifier.java52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
DDefaultPhoneNotifier.java223 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
227 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfo()
DServiceStateTracker.java303 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) { in ServiceStateTracker() argument
305 mCellInfo = cellInfo; in ServiceStateTracker()
DPhoneBase.java1424 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
1425 mNotifier.notifyCellInfo(this, privatizeCellInfoList(cellInfo)); in notifyCellInfo()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java795 public void notifyCellInfo(List<CellInfo> cellInfo) { in notifyCellInfo() argument
796 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellInfo); in notifyCellInfo()
799 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { in notifyCellInfoForSubscriber() argument
805 + " cellInfo=" + cellInfo); in notifyCellInfoForSubscriber()
811 mCellInfo.set(phoneId, cellInfo); in notifyCellInfoForSubscriber()
817 log("notifyCellInfo: mCellInfo=" + cellInfo + " r=" + r); in notifyCellInfoForSubscriber()
819 r.callback.onCellInfoChanged(cellInfo); in notifyCellInfoForSubscriber()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaServiceStateTracker.java171 protected CdmaServiceStateTracker(CDMAPhone phone, CellInfo cellInfo) { in CdmaServiceStateTracker() argument
172 super(phone, phone.mCi, cellInfo); in CdmaServiceStateTracker()