HomeSort by relevance Sort by last modified time
    Searched refs:CellInfo (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/telephony/java/android/telephony/
CellInfo.aidl 20 parcelable CellInfo
CellInfo.java 25 public abstract class CellInfo implements Parcelable {
61 protected CellInfo() {
68 protected CellInfo(CellInfo ci) {
126 CellInfo o = (CellInfo) other;
191 protected CellInfo(Parcel in) {
198 public static final Creator<CellInfo> CREATOR = new Creator<CellInfo>() {
200 public CellInfo createFromParcel(Parcel in)
    [all...]
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);
CellInfoCdma.java 26 public final class CellInfoCdma extends CellInfo implements Parcelable {
CellInfoGsm.java 26 public final class CellInfoGsm extends CellInfo implements Parcelable {
CellInfoLte.java 26 public final class CellInfoLte extends CellInfo implements Parcelable {
  /external/ceres-solver/internal/ceres/
block_random_access_matrix.h 55 // CellInfo object containing a pointer to an array which contains the
74 // CellInfo* cell = A->GetCell(row_block_id, col_block_id,
86 struct CellInfo {
87 CellInfo()
91 explicit CellInfo(double* ptr)
104 // a CellInfo with a pointer to the dense matrix containing it,
112 virtual CellInfo* GetCell(int row_block_id,
block_random_access_dense_matrix.h 66 virtual CellInfo* GetCell(int row_block_id,
90 scoped_array<CellInfo> cell_infos_;
block_random_access_crs_matrix.h 65 virtual CellInfo* GetCell(int row_block_id,
97 typedef HashMap<long int, CellInfo* > LayoutType;
block_random_access_dense_matrix.cc 53 cell_infos_.reset(new CellInfo[num_blocks * num_blocks]);
66 CellInfo* BlockRandomAccessDenseMatrix::GetCell(const int row_block_id,
block_random_access_sparse_matrix.h 67 virtual CellInfo* GetCell(int row_block_id,
97 typedef HashMap<long int, CellInfo* > LayoutType;
block_random_access_crs_matrix.cc 101 new CellInfo(values + num_cols);
144 CellInfo* BlockRandomAccessCRSMatrix::GetCell(int row_block_id,
block_random_access_dense_matrix_test.cc 57 CellInfo* cell =
87 CellInfo* cell = m.GetCell(
block_random_access_sparse_matrix.cc 92 new CellInfo(values + pos);
128 CellInfo* BlockRandomAccessSparseMatrix::GetCell(int row_block_id,
block_random_access_crs_matrix_test.cc 75 CellInfo* cell = m.GetCell(row_block_id, col_block_id,
block_random_access_sparse_matrix_test.cc 75 CellInfo* cell = m.GetCell(row_block_id, col_block_id,
  /frameworks/base/telephony/java/com/android/internal/telephony/
IPhoneStateListener.aidl 22 import android.telephony.CellInfo;
37 void onCellInfoChanged(in List<CellInfo> cellInfo);
ITelephony.aidl 22 import android.telephony.CellInfo;
301 List<CellInfo> getAllCellInfo();
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);
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...]
  /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) {
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 447 typedef struct CellInfo CellInfo;
448 struct CellInfo {
491 CellInfo info; /* A parse of the cell we are pointing at */
  /hardware/ril/libril/
ril.cpp     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 25 import android.telephony.CellInfo;
468 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>();
503 mCellInfoLte.setTimeStampType(CellInfo.TIMESTAMP_TYPE_JAVA_RIL);
508 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>();
556 public List<CellInfo> getAllCellInfo() {
560 ArrayList<CellInfo> arrayList = new ArrayList<CellInfo>();
561 CellInfo ci
    [all...]

Completed in 799 milliseconds

1 2 3