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

1 2

  /frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.aidl 20 parcelable CellIdentityGsm;
CellIdentityGsm.java 28 public final class CellIdentityGsm extends CellIdentity {
29 private static final String TAG = CellIdentityGsm.class.getSimpleName();
44 public CellIdentityGsm() {
60 public CellIdentityGsm(int mcc, int mnc, int lac, int cid) {
76 public CellIdentityGsm(int mcc, int mnc, int lac, int cid, int arfcn, int bsic) {
93 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr,
104 private CellIdentityGsm(CellIdentityGsm cid) {
109 CellIdentityGsm copy() {
110 return new CellIdentityGsm(this)
    [all...]
CellInfoGsm.java 31 private CellIdentityGsm mCellIdentityGsm;
37 mCellIdentityGsm = new CellIdentityGsm();
48 public CellIdentityGsm getCellIdentity() {
52 public void setCellIdentity(CellIdentityGsm cid) {
119 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in);
CellIdentity.java 217 case TYPE_GSM: return CellIdentityGsm.createFromParcelBody(in);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CellIdentityGsmTest.java 21 import android.telephony.CellIdentityGsm;
25 /** Unit tests for {@link CellIdentityGsm}. */
47 CellIdentityGsm ci =
48 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR,
68 CellIdentityGsm ci =
69 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithThreeDigit,
82 CellIdentityGsm ci =
83 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithTwoDigit,
95 CellIdentityGsm ci =
96 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, null, ALPHA_LONG, ALPHA_SHORT)
    [all...]
NetworkScanResultTest.java 23 import android.telephony.CellIdentityGsm;
44 CellIdentityGsm cig = new CellIdentityGsm(310, 310, 1, 2, 3, 4);
LocaleTrackerTest.java 31 import android.telephony.CellIdentityGsm;
78 mCellInfo.setCellIdentity(new CellIdentityGsm(Integer.parseInt(US_MCC),
ServiceStateTrackerTest.java 62 import android.telephony.CellIdentityGsm;
629 CellIdentityGsm cellIdentityGsm = new CellIdentityGsm(0, 0, 2, 3);
631 0, 0, 0, 0, 0, false, null, cellIdentityGsm);
    [all...]
RILTest.java 116 import android.telephony.CellIdentityGsm;
    [all...]
  /hardware/interfaces/radio/1.2/
types.hal 24 import @1.0::CellIdentityGsm;
244 struct CellIdentityGsm {
245 @1.0::CellIdentityGsm base;
273 CellIdentityGsm cellIdentityGsm;
475 vec<CellIdentityGsm> cellIdentityGsm;
  /packages/services/Telephony/src/com/android/phone/
CellInfoUtil.java 21 import android.telephony.CellIdentityGsm;
106 } else if (cellIdentity instanceof CellIdentityGsm) {
108 cellInfo.setCellIdentity((CellIdentityGsm) cellIdentity);
NetworkQueryService.java 30 import android.telephony.CellIdentityGsm;
383 CellIdentityGsm cig = new CellIdentityGsm(
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 23 import android.telephony.CellIdentityGsm;
102 // The followings are parameters for testing CellIdentityGsm
540 private void verifyCellIdentityGsm(CellIdentityGsm gsm) {
589 private void verifyCellIdentityGsmParcel(CellIdentityGsm gsm) {
594 CellIdentityGsm newci = CellIdentityGsm.CREATOR.createFromParcel(p);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CellularNetworkService.java 30 import android.telephony.CellIdentityGsm;
308 if (cellIdentity.cellIdentityGsm.size() == 1) {
309 android.hardware.radio.V1_0.CellIdentityGsm cellIdentityGsm =
310 cellIdentity.cellIdentityGsm.get(0);
311 result = new CellIdentityGsm(cellIdentityGsm.lac, cellIdentityGsm.cid,
312 cellIdentityGsm.arfcn, cellIdentityGsm.bsic, cellIdentityGsm.mcc
    [all...]
ServiceStateTracker.java 56 import android.telephony.CellIdentityGsm;
    [all...]
  /hardware/interfaces/radio/1.0/
types.hal     [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkMonitor.java 56 import android.telephony.CellIdentityGsm;
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 59 import android.telephony.CellIdentityGsm;
760 CellIdentityGsm cellidentity = ((CellInfoGsm) data).getCellIdentity();
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 51 import android.telephony.CellIdentityGsm;
783 CellIdentityGsm cidGsm = ci.getCellIdentity();
    [all...]
  /frameworks/base/config/
boot-image-profile.txt     [all...]
preloaded-classes     [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 2274 milliseconds

1 2