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

1 2

  /frameworks/base/telephony/java/android/telephony/
CellInfoGsm.java 26 public final class CellInfoGsm extends CellInfo implements Parcelable {
28 private static final String LOG_TAG = "CellInfoGsm";
35 public CellInfoGsm() {
42 public CellInfoGsm(CellInfoGsm ci) {
78 CellInfoGsm o = (CellInfoGsm) other;
90 sb.append("CellInfoGsm:{");
114 * Construct a CellInfoGsm object from the given parcel
117 private CellInfoGsm(Parcel in)
    [all...]
CellInfo.java 259 case TYPE_GSM: return CellInfoGsm.createFromParcelBody(in);
  /system/chre/apps/chqts/src/general_test/
cell_info_gsm.h 25 class CellInfoGsm : private CellInfoBase {
cell_info_gsm.cc 20 bool CellInfoGsm::validateIdentity(
59 bool CellInfoGsm::validateSignalStrength(
76 bool CellInfoGsm::validate(const struct chreWwanCellInfoGsm& cell) {
wwan_cell_info_test.cc 124 valid &= CellInfoGsm::validate(cells[i].CellInfo.gsm);
  /packages/services/Telephony/src/com/android/phone/
CellInfoUtil.java 26 import android.telephony.CellInfoGsm;
61 } else if (cellInfo instanceof CellInfoGsm) {
80 } else if (cellInfo instanceof CellInfoGsm) {
81 return ((CellInfoGsm) cellInfo).getCellSignalStrength().getLevel();
107 CellInfoGsm cellInfo = new CellInfoGsm();
153 } else if (cellInfo instanceof CellInfoGsm) {
154 CellInfoGsm gsm = (CellInfoGsm) cellInfo;
NetworkQueryService.java 32 import android.telephony.CellInfoGsm;
393 CellInfoGsm ci = new CellInfoGsm();
NetworkSelectListPreference.java 33 import android.telephony.CellInfoGsm;
553 } else if (cellInfo instanceof CellInfoGsm) {
554 CellInfoGsm gsm = (CellInfoGsm) cellInfo;
592 } else if (cellInfo instanceof CellInfoGsm) {
593 CellInfoGsm gsm = (CellInfoGsm) cellInfo;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
NetworkScanResultTest.java 26 import android.telephony.CellInfoGsm;
46 CellInfoGsm gsm = new CellInfoGsm();
LocaleTrackerTest.java 32 import android.telephony.CellInfoGsm;
52 private CellInfoGsm mCellInfo;
77 mCellInfo = new CellInfoGsm();
RILTest.java 121 import android.telephony.CellInfoGsm;
    [all...]
ServiceStateTrackerTest.java 65 import android.telephony.CellInfoGsm;
348 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p);
    [all...]
  /device/google/cuttlefish_common/tests/ril/src/com/android/cuttlefish/ril/tests/
RilE2eTests.java 27 import android.telephony.CellInfoGsm;
158 CellInfoGsm cellinfogsm = (CellInfoGsm)mTeleManager.getAllCellInfo().get(0); local
159 CellSignalStrengthGsm cellSignalStrengthGsm = cellinfogsm.getCellSignalStrength();
  /hardware/interfaces/radio/1.2/
types.hal 272 struct CellInfoGsm {
319 vec<CellInfoGsm> gsm;
  /frameworks/base/services/core/java/com/android/server/emergency/
EmergencyAffordanceService.java 29 import android.telephony.CellInfoGsm;
278 if (cellInfo instanceof CellInfoGsm) {
279 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMcc();
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 28 import android.telephony.CellInfoGsm;
150 } else if (cellInfo instanceof CellInfoGsm) {
151 verifyGsmInfo((CellInfoGsm) cellInfo);
521 private void verifyGsmInfo(CellInfoGsm gsm) {
530 private void verifyCellInfoWcdmaParcelandHashcode(CellInfoGsm gsm) {
535 CellInfoGsm newCi = CellInfoGsm.CREATOR.createFromParcel(p);
  /cts/tests/tests/carrierapi/src/android/carrierapi/cts/
NetworkScanApiTest.java 27 import android.telephony.CellInfoGsm;
197 } else if (cellInfo instanceof CellInfoGsm) {
199 int[] gsmChannels = {((CellInfoGsm) cellInfo).getCellIdentity().getArfcn()};
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
LocaleTracker.java 34 import android.telephony.CellInfoGsm;
187 if (cellInfo instanceof CellInfoGsm) {
188 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMccString();
ServiceStateTracker.java 61 import android.telephony.CellInfoGsm;
    [all...]
RIL.java 30 import android.hardware.radio.V1_0.CellInfoGsm;
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 63 import android.telephony.CellInfoGsm;
304 if (data instanceof CellInfoGsm) {
305 return buildCellInfoGsm((CellInfoGsm) data);
755 private static JSONObject buildCellInfoGsm(CellInfoGsm data)
760 CellIdentityGsm cellidentity = ((CellInfoGsm) data).getCellIdentity();
761 CellSignalStrengthGsm signalstrength = ((CellInfoGsm) data).getCellSignalStrength();
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkMonitor.java 61 import android.telephony.CellInfoGsm;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 47 import android.telephony.CellInfoGsm;
782 private final String buildGsmInfoString(CellInfoGsm ci) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 34 import android.telephony.CellInfoGsm;
    [all...]
  /hardware/interfaces/radio/1.0/
types.hal     [all...]

Completed in 1042 milliseconds

1 2