Searched refs:cellInfo (Results 1 – 11 of 11) sorted by relevance
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkMonitor.java | 785 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/ |
D | PhoneStateListener.java | 455 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/ |
D | ITelephonyRegistry.aidl | 61 void notifyCellInfo(in List<CellInfo> cellInfo); in notifyCellInfo() argument 67 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo); in notifyCellInfoForSubscriber() argument
|
D | IPhoneStateListener.aidl | 41 void onCellInfoChanged(in List<CellInfo> cellInfo); in onCellInfoChanged() argument
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | TestPhoneNotifier.java | 67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | PhoneNotifier.java | 52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); in notifyCellInfo() argument
|
D | DefaultPhoneNotifier.java | 223 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { in notifyCellInfo() argument 227 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo); in notifyCellInfo()
|
D | ServiceStateTracker.java | 303 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) { in ServiceStateTracker() argument 305 mCellInfo = cellInfo; in ServiceStateTracker()
|
D | PhoneBase.java | 1424 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/ |
D | TelephonyRegistry.java | 795 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/ |
D | CdmaServiceStateTracker.java | 171 protected CdmaServiceStateTracker(CDMAPhone phone, CellInfo cellInfo) { in CdmaServiceStateTracker() argument 172 super(phone, phone.mCi, cellInfo); in CdmaServiceStateTracker()
|