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

1 2 3 4 5

  /frameworks/base/telephony/java/android/telephony/
CellInfo.aidl 20 parcelable CellInfo
CellInfo.java 28 public abstract class CellInfo implements Parcelable {
92 protected CellInfo() {
99 protected CellInfo(CellInfo ci) {
177 CellInfo o = (CellInfo) other;
246 protected CellInfo(Parcel in) {
254 public static final Creator<CellInfo> CREATOR = new Creator<CellInfo>() {
256 public CellInfo createFromParcel(Parcel in)
    [all...]
TelephonyScanManager.java 66 public void onResults(List<CellInfo> results) {}
136 CellInfo[] ci = new CellInfo[parcelables.length];
138 ci[i] = (CellInfo) parcelables[i];
142 callback.onResults((List<CellInfo>) Arrays.asList(ci));
  /external/autotest/frontend/client/src/autotest/common/spreadsheet/
SpreadsheetSelectionManager.java 4 import autotest.common.spreadsheet.Spreadsheet.CellInfo;
16 private Collection<CellInfo> selectedCells = new HashSet<CellInfo>();
20 public void onCellsSelected(List<CellInfo> cells);
21 public void onCellsDeselected(List<CellInfo> cells);
30 public void toggleSelected(CellInfo cell) {
40 private void selectCell(CellInfo cell) {
45 private void deselectCell(CellInfo cell) {
50 public List<CellInfo> getSelectedCells() {
51 return new ArrayList<CellInfo>(selectedCells)
    [all...]
Spreadsheet.java 51 protected CellInfo[][] dataCells, rowHeaderCells, columnHeaderCells;
64 public void onCellClicked(CellInfo cellInfo, boolean isRightClick);
81 public static class CellInfo {
90 public CellInfo(Header row, Header column, String contents) {
260 dataCells = new CellInfo[rowHeaderValues.size()][columnHeaderValues.size()];
263 public CellInfo getCellInfo(int row, int column) {
267 dataCells[row][column] = new CellInfo(rowHeader, columnHeader, "");
272 private CellInfo getCellInfo(CellInfo[][] cells, int row, int column)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
INetworkQueryServiceCallback.aidl 19 import android.telephony.CellInfo;
33 void onResults(in List<CellInfo> results);
CellInfoUtil.java 24 import android.telephony.CellInfo;
40 * Add static Utility functions to get information from the CellInfo object.
41 * TODO: Modify {@link CellInfo} for simplify those functions
50 * Get the network type from a CellInfo. Network types include
56 public static int getNetworkType(CellInfo cellInfo) {
57 if (cellInfo instanceof CellInfoLte) {
59 } else if (cellInfo instanceof CellInfoWcdma) {
61 } else if (cellInfo instanceof CellInfoGsm) {
63 } else if (cellInfo instanceof CellInfoCdma)
    [all...]
NetworkOperatorPreference.java 25 import android.telephony.CellInfo;
44 private CellInfo mCellInfo;
53 CellInfo cellinfo, Context context, List<String> forbiddenPlmns) {
55 mCellInfo = cellinfo;
60 public CellInfo getCellInfo() {
NetworkSelectSetting.java 37 import android.telephony.CellInfo;
83 private List<CellInfo> mCellInfoList;
194 CellInfo cellInfo = mSelectedNetworkOperatorPreference.getCellInfo();
195 if (DBG) logd("User click a NetworkOperatorPreference: " + cellInfo.toString());
206 logd("Connect to the network: " + CellInfoUtil.getNetworkTitle(cellInfo));
215 if (!CellInfoUtil.getNetworkTitle(cellInfo).equals(
222 OperatorInfo operatorInfo = CellInfoUtil.getOperatorInfoFromCellInfo(cellInfo);
281 List<CellInfo> results = aggregateCellInfoList((List<CellInfo>) msg.obj)
    [all...]
  /system/chre/apps/wwan_world/
wwan_world.cc 72 LOGI(" mcc %" PRId32, cell->CellInfo.lte.cellIdentityLte.mcc);
73 LOGI(" mnc %" PRId32, cell->CellInfo.lte.cellIdentityLte.mnc);
74 LOGI(" ci %" PRId32, cell->CellInfo.lte.cellIdentityLte.ci);
75 LOGI(" pci %" PRId32, cell->CellInfo.lte.cellIdentityLte.pci);
76 LOGI(" tac %" PRId32, cell->CellInfo.lte.cellIdentityLte.tac);
77 LOGI(" earfcn %" PRId32, cell->CellInfo.lte.cellIdentityLte.earfcn);
81 LOGI(" mcc %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.mcc);
82 LOGI(" mnc %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.mnc);
83 LOGI(" lac %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.lac);
84 LOGI(" cid %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.cid)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
NetworkScanResult.java 21 import android.telephony.CellInfo;
54 public List<CellInfo> networkInfos;
61 * @param networkInfos List of the CellInfo.
63 public NetworkScanResult(int scanStatus, int scanError, List<CellInfo> networkInfos) {
84 List<CellInfo> ni = new ArrayList<>();
IPhoneStateListener.aidl 22 import android.telephony.CellInfo;
43 void onCellInfoChanged(in List<CellInfo> cellInfo);
ITelephonyRegistry.aidl 23 import android.telephony.CellInfo;
60 void notifyCellInfo(in List<CellInfo> cellInfo);
69 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo);
  /external/autotest/frontend/client/src/autotest/common/table/
TableRenderer.java 4 import autotest.common.spreadsheet.Spreadsheet.CellInfo;
23 public void renderRowsAndAppend(HTMLTable tableObject, CellInfo[][] rows,
29 CellInfo[] row = rows[rowIndex];
31 for (CellInfo cell : row) {
72 public void renderRows(HTMLTable tableObject, CellInfo[][] rows, boolean renderNull) {
77 public void renderRows(HTMLTable tableObject, CellInfo[][] rows) {
  /hardware/interfaces/radio/1.2/
IRadioIndication.hal 39 oneway cellInfoList_1_2(RadioIndicationType type, vec<CellInfo> records);
IRadioResponse.hal 29 * @param cellInfo List of current cell information known to radio
43 oneway getCellInfoListResponse_1_2(RadioResponseInfo info, vec<CellInfo> cellInfo);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TestPhoneNotifier.java.broken 21 import android.telephony.CellInfo;
67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
NetworkScanResultTest.java 25 import android.telephony.CellInfo;
42 ArrayList<CellInfo> infos = new ArrayList<CellInfo>();
RILTest.java 119 import android.telephony.CellInfo;
1116 android.hardware.radio.V1_0.CellInfoGsm cellinfo = local
1157 android.hardware.radio.V1_0.CellInfoWcdma cellinfo = local
1196 android.hardware.radio.V1_0.CellInfoCdma cellinfo = local
1526 android.hardware.radio.V1_2.CellInfoGsm cellinfo = local
1555 android.hardware.radio.V1_2.CellInfoWcdma cellinfo = local
1584 android.hardware.radio.V1_2.CellInfoCdma cellinfo = local
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TkoSpreadsheetUtils.java 3 import autotest.common.spreadsheet.Spreadsheet.CellInfo;
13 public static TestSet getTestSet(CellInfo cellInfo, JSONObject condition,
15 boolean isSingleTest = cellInfo.testCount == 1;
17 return new SingleTestSet(cellInfo.testIndex, condition);
21 if (cellInfo.row != null) {
22 setSomeFields(testSet, rowFields, cellInfo.row);
24 if (cellInfo.column != null) {
25 setSomeFields(testSet, columnFields, cellInfo.column);
39 public static DrilldownType getDrilldownType(CellInfo cellInfo)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneNotifier.java 19 import android.telephony.CellInfo;
52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo);
  /system/chre/apps/chqts/src/general_test/
wwan_cell_info_test.cc 98 "Invalid reserved CellInfo field: %d", cells[i].reserved);
124 valid &= CellInfoGsm::validate(cells[i].CellInfo.gsm);
126 valid &= CellInfoCdma::validate(cells[i].CellInfo.cdma);
128 valid &= CellInfoLte::validate(cells[i].CellInfo.lte);
130 valid &= CellInfoWcdma::validate(cells[i].CellInfo.wcdma);
132 valid &= CellInfoTdscdma::validate(cells[i].CellInfo.tdscdma);
  /packages/services/Telephony/testapps/TelephonyRegistryTestApp/src/com/android/phone/testapps/telephonyregistry/
TelephonyRegistryTestApp.java 25 import android.telephony.CellInfo;
71 public void onCellInfoChanged(List<CellInfo> cellInfo) {
72 notify("onCellInfoChanged", cellInfo);
114 List<CellInfo> cellInfos = telephonyManager.getAllCellInfo();
119 cellInfoText = cellInfos.stream().map(CellInfo::toString)
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/ulp_components/
CellInfo.java 43 public class CellInfo extends Asn1Choice {
61 "CellInfo: " + tag + " maps to both " + select0 + " and " + select);
67 public CellInfo() {
91 * Creates a new CellInfo from encoded stream.
93 public static CellInfo fromPerUnaligned(byte[] encodedBytes) {
94 CellInfo result = new CellInfo();
100 * Creates a new CellInfo from encoded stream.
102 public static CellInfo fromPerAligned(byte[] encodedBytes) {
103 CellInfo result = new CellInfo()
    [all...]
LocationId.java 100 private CellInfo cellInfo_;
101 public CellInfo getCellInfo() {
105 * @throws ClassCastException if value is not a CellInfo
108 this.cellInfo_ = (CellInfo) value;
110 public CellInfo setCellInfoToNewInstance() {
111 cellInfo_ = new CellInfo();
162 return tag == null ? CellInfo.getPossibleFirstTags() : ImmutableList.of(tag);
176 return "cellInfo : "

Completed in 793 milliseconds

1 2 3 4 5