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

1 2

  /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 {
CellInfoWcdma.java 26 public final class CellInfoWcdma 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,
87 CellInfo cell_info_;
block_random_access_sparse_matrix.h 67 virtual CellInfo* GetCell(int row_block_id,
98 typedef HashMap<long int, CellInfo* > LayoutType;
block_random_access_dense_matrix.cc 61 CellInfo* BlockRandomAccessDenseMatrix::GetCell(const 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_sparse_matrix_test.cc 75 CellInfo* cell = m.GetCell(row_block_id, col_block_id,
schur_eliminator_impl.h 183 CellInfo* cell_info = lhs->GetCell(block_id, block_id,
515 CellInfo* cell_info = lhs->GetCell(block1, block2,
622 CellInfo* cell_info = lhs->GetCell(block1, block1,
638 CellInfo* cell_info = lhs->GetCell(block1, block2,
678 CellInfo* cell_info = lhs->GetCell(block1, block1,
700 CellInfo* cell_info = lhs->GetCell(block1, block2,
  /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;
64 protected List<CellInfo> mLastCellInfoList = null;
68 protected final CellInfo mCellInfo;
191 List<CellInfo> list;
199 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) {
201 mCellInfo = cellInfo;
386 result.list = (List<CellInfo>) ar.result;
405 List<CellInfo> list = (List<CellInfo>) ar.result
    [all...]
DefaultPhoneNotifier.java 24 import android.telephony.CellInfo;
169 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
171 mRegistry.notifyCellInfo(cellInfo);
  /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/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 25 import android.telephony.CellInfo;
456 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>();
491 mCellInfoLte.setTimeStampType(CellInfo.TIMESTAMP_TYPE_JAVA_RIL);
496 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>();
548 public List<CellInfo> getAllCellInfo() {
552 ArrayList<CellInfo> arrayList = new ArrayList<CellInfo>();
553 CellInfo ci
    [all...]
  /hardware/ril/libril/
ril.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 33 import android.telephony.CellInfo;
136 private List<CellInfo> mCellInfoValue;
170 public void onCellInfoChanged(List<CellInfo> arrayCi) {
266 mCellInfo = (TextView) findViewById(R.id.cellinfo);
526 private final void updateCellInfoTv(List<CellInfo> arrayCi) {
531 for (CellInfo ci : mCellInfoValue) {
    [all...]

Completed in 344 milliseconds

1 2