/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);
|
ITelephonyRegistry.aidl | 25 import android.telephony.CellInfo; 43 void notifyCellInfo(in List<CellInfo> cellInfo);
|
ITelephony.aidl | 20 import android.telephony.CellInfo; 324 List<CellInfo> getAllCellInfo();
|
/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 | 26 import android.telephony.CellInfo; 67 protected List<CellInfo> mLastCellInfoList = null; 71 protected final CellInfo mCellInfo; 195 List<CellInfo> list; 203 protected ServiceStateTracker(PhoneBase phoneBase, CommandsInterface ci, CellInfo cellInfo) { 205 mCellInfo = cellInfo; 410 result.list = (List<CellInfo>) ar.result; 429 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; 470 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>(); 505 mCellInfoLte.setTimeStampType(CellInfo.TIMESTAMP_TYPE_JAVA_RIL); 510 ArrayList<CellInfo> arrayCi = new ArrayList<CellInfo>(); 558 public List<CellInfo> getAllCellInfo() { 562 ArrayList<CellInfo> arrayList = new ArrayList<CellInfo>(); 563 CellInfo ci [all...] |