HomeSort by relevance Sort by last modified time
    Searched full:cellinfo (Results 1 - 25 of 73) sorted by null

1 2 3

  /frameworks/base/telephony/java/android/telephony/
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...]
CellInfo.aidl 20 parcelable CellInfo
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 {
  /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 22 import android.telephony.CellInfo;
301 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);
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;
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...]
  /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/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_dense_matrix_test.cc 57 CellInfo* cell =
87 CellInfo* cell = m.GetCell(
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_sparse_matrix.cc 92 new CellInfo(values + pos);
128 CellInfo* BlockRandomAccessSparseMatrix::GetCell(int row_block_id,
  /hardware/ril/libril/
ril.cpp     [all...]
  /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...]
  /frameworks/base/docs/html/sdk/api_diff/17/changes/
android.telephony.PhoneStateListener.html 86 <A NAME="android.telephony.PhoneStateListener.onCellInfoChanged_added(java.util.List<android.telephony.CellInfo>)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneStateListener.html#onCellInfoChanged(java.util.List<android.telephony.CellInfo>)" target="_top"><code>onCellInfoChanged</code></A>(<code>List&lt;CellInfo&gt;</code>)</nobr>
pkg_android.telephony.html 105 <A NAME="CellInfo"></A>
106 <nobr><A HREF="../../../../reference/android/telephony/CellInfo.html" target="_top"><code>CellInfo</code></A></nobr>
  /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...]

Completed in 1240 milliseconds

1 2 3