HomeSort by relevance Sort by last modified time
    Searched refs:cellInfo (Results 1 - 19 of 19) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
IPhoneStateListener.aidl 22 import android.telephony.CellInfo;
37 void onCellInfoChanged(in List<CellInfo> cellInfo);
ITelephonyRegistry.aidl 25 import android.telephony.CellInfo;
43 void notifyCellInfo(in List<CellInfo> cellInfo);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneNotifier.java 19 import android.telephony.CellInfo;
50 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo);
DefaultPhoneNotifier.java 24 import android.telephony.CellInfo;
169 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
171 mRegistry.notifyCellInfo(cellInfo);
ServiceStateTracker.java 25 import android.telephony.CellInfo;
65 protected List<CellInfo> mLastCellInfoList = null;
69 protected final CellInfo mCellInfo;
193 List<CellInfo> list;
201 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) {
203 mCellInfo = cellInfo;
408 result.list = (List<CellInfo>) ar.result;
427 List<CellInfo> list = (List<CellInfo>) ar.result
    [all...]
PhoneBase.java 35 import android.telephony.CellInfo;
803 public List<CellInfo> getAllCellInfo() {
804 List<CellInfo> cellInfoList = getServiceStateTracker().getAllCellInfo();
813 private List<CellInfo> privatizeCellInfoList(List<CellInfo> cellInfoList) {
817 ArrayList<CellInfo> privateCellInfoList = new ArrayList<CellInfo>(cellInfoList.size());
819 for (CellInfo c : cellInfoList) {
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TestPhoneNotifier.java 21 import android.telephony.CellInfo;
67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
  /frameworks/base/core/java/android/net/
CaptivePortalTracker.java 37 import android.telephony.CellInfo;
465 List<CellInfo> info = mTelephonyManager.getAllCellInfo();
469 for (CellInfo cellInfo : info) {
470 if (cellInfo.isRegistered()) {
473 if (DBG) log("more than one registered CellInfo. Can't " +
477 if (cellInfo instanceof CellInfoCdma) {
478 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity();
480 } else if (cellInfo instanceof CellInfoGsm) {
481 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity()
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneStateListener.java 25 import android.telephony.CellInfo;
290 * @param cellInfo is the list of currently visible cells.
292 public void onCellInfoChanged(List<CellInfo> cellInfo) {
344 public void onCellInfoChanged(List<CellInfo> cellInfo) {
345 Message.obtain(mHandler, LISTEN_CELL_INFO, 0, 0, cellInfo).sendToTarget();
385 PhoneStateListener.this.onCellInfoChanged((List<CellInfo>)msg.obj);
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 79 private final CellInfo mCellInfo = new CellInfo();
712 final CellInfo cellInfo = mCellInfo;
738 cellInfo.cell = child;
739 cellInfo.cellX = lp.cellX;
740 cellInfo.cellY = lp.cellY;
741 cellInfo.spanX = lp.cellHSpan;
742 cellInfo.spanY = lp.cellVSpan;
755 cellInfo.cell = null
    [all...]
Workspace.java 108 * CellInfo for the cell that is currently being dragged
110 private CellLayout.CellInfo mDragInfo;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 81 private final CellInfo mCellInfo = new CellInfo();
698 final CellInfo cellInfo = mCellInfo;
724 cellInfo.cell = child;
725 cellInfo.cellX = lp.cellX;
726 cellInfo.cellY = lp.cellY;
727 cellInfo.spanX = lp.cellHSpan;
728 cellInfo.spanY = lp.cellVSpan;
741 cellInfo.cell = null
    [all...]
Workspace.java 132 * CellInfo for the cell that is currently being dragged
134 private CellLayout.CellInfo mDragInfo;
    [all...]
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 38 import android.telephony.CellInfo;
126 private List<CellInfo> mCellInfo = null;
397 public void notifyCellInfo(List<CellInfo> cellInfo) {
403 mCellInfo = cellInfo;
410 r.callback.onCellInfoChanged(cellInfo);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 36 import android.telephony.CellInfo;
164 protected CdmaServiceStateTracker(CDMAPhone phone, CellInfo cellInfo) {
165 super(phone, phone.mCi, cellInfo);
    [all...]
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 5050 milliseconds