Home
last modified time | relevance | path

Searched refs:CellIdentityGsm (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellIdentityGsmTest.java20 import android.telephony.CellIdentityGsm;
49 CellIdentityGsm ci = in testDefaultConstructor()
50 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR, in testDefaultConstructor()
74 CellIdentityGsm ci = in testConstructorWithThreeDigitMnc()
75 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithThreeDigit, in testConstructorWithThreeDigitMnc()
92 CellIdentityGsm ci = in testConstructorWithTwoDigitMnc()
93 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithTwoDigit, in testConstructorWithTwoDigitMnc()
109 CellIdentityGsm ci = in testConstructorWithEmptyMccMnc()
110 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, null, ALPHA_LONG, ALPHA_SHORT, in testConstructorWithEmptyMccMnc()
120 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT, in testConstructorWithEmptyMccMnc()
[all …]
DNetworkScanResultTest.java22 import android.telephony.CellIdentityGsm;
45 CellIdentityGsm cig = new CellIdentityGsm(1, 2, 40, 5, "001", "01", "test", "tst", in testParcel()
DCellIdentityTest.java22 import android.telephony.CellIdentityGsm;
82 CellIdentityGsm gsm = new CellIdentityGsm(-1, -1, -1, -1, null, null, null, null, in testConstructCellIdentityGsm()
90 gsm = new CellIdentityGsm(MAX_LAC, MAX_CID, MAX_ARFCN, MAX_BSIC, null, null, null, null, in testConstructCellIdentityGsm()
98 gsm = new CellIdentityGsm( in testConstructCellIdentityGsm()
199 CellIdentityGsm gsm = new CellIdentityGsm(MAX_LAC, MAX_CID, MAX_ARFCN, MAX_BSIC, in testGetMccMncString()
DDefaultPhoneNotifierTest.java28 import android.telephony.CellIdentityGsm;
363 CellIdentityGsm mGsmCellLocation = new CellIdentityGsm( in testNotifyCellLocation()
366 ArgumentCaptor<CellIdentityGsm> cellLocationCapture = in testNotifyCellLocation()
367 ArgumentCaptor.forClass(CellIdentityGsm.class); in testNotifyCellLocation()
DCellularNetworkServiceTest.java31 import android.telephony.CellIdentityGsm;
485 new CellIdentityGsm(), in testNetworkTypeForCellIdentity()
509 new CellIdentityGsm(), in testNetworkTypeForCellIdentity()
DServiceStateTrackerTest.java70 import android.telephony.CellIdentityGsm;
805 tmp.setCellIdentity(new CellIdentityGsm(0, 1, 900, 5, "001", "01", "test", "tst", in getCellInfoGsm()
941 CellIdentityGsm cellIdentityGsm = new CellIdentityGsm( in testGsmCellLocation()
2208 CellIdentityGsm cellIdentity = in testCSEmergencyRegistrationState()
2209 new CellIdentityGsm(0, 1, 900, 5, "001", "01", "test", "tst", in testCSEmergencyRegistrationState()
2237 CellIdentityGsm cellIdentity = in testPSEmergencyRegistrationState()
2238 new CellIdentityGsm(0, 1, 900, 5, "001", "01", "test", "tst", in testPSEmergencyRegistrationState()
2268 CellIdentityGsm cellIdentity = in testRatRatchet()
2269 new CellIdentityGsm(0, 1, 900, 5, "001", "01", "test", "tst", in testRatRatchet()
2287 CellIdentityGsm cellIdentity = in testRatRatchetWithCellChange()
[all …]
DLocaleTrackerTest.java34 import android.telephony.CellIdentityGsm;
90 mCellInfo.setCellIdentity(new CellIdentityGsm( in setUp()
DRILTest.java143 import android.telephony.CellIdentityGsm;
1736 private android.hardware.radio.V1_2.CellIdentityGsm getCellIdentityGsm_1_2() { in getCellIdentityGsm_1_2()
1737 android.hardware.radio.V1_0.CellIdentityGsm cellIdentity0 = in getCellIdentityGsm_1_2()
1738 new android.hardware.radio.V1_0.CellIdentityGsm(); in getCellIdentityGsm_1_2()
1746 android.hardware.radio.V1_2.CellIdentityGsm cellIdentity = in getCellIdentityGsm_1_2()
1747 new android.hardware.radio.V1_2.CellIdentityGsm(); in getCellIdentityGsm_1_2()
1785 CellIdentityGsm cellIdentityGsm = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, in testConvertHalCellInfoList_1_4ForGsm()
1795 android.hardware.radio.V1_5.CellIdentityGsm cellIdentity = in getCellInfoGsm_1_5()
1796 new android.hardware.radio.V1_5.CellIdentityGsm(); in getCellInfoGsm_1_5()
1826 CellIdentityGsm cellIdentityGsm = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, in testConvertHalCellInfoList_1_5ForGsm()
[all …]
DTelephonyRegistryTest.java52 import android.telephony.CellIdentityGsm;
1354 CellIdentity cellIdentity = new CellIdentityGsm(-1, -1, -1, -1, null, null, null, null, in testNotifyCellLocationForSubscriberByUserSwitched()
DGsmCdmaPhoneTest.java77 import android.telephony.CellIdentityGsm;
443 CellIdentity cellLocation = new CellIdentityGsm(); in testGetCellLocation()
/frameworks/base/telephony/java/android/telephony/
DCellIdentityGsm.java38 public final class CellIdentityGsm extends CellIdentity { class
39 private static final String TAG = CellIdentityGsm.class.getSimpleName();
63 public CellIdentityGsm() { in CellIdentityGsm() method in CellIdentityGsm
87 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, @Nullable String mccStr, in CellIdentityGsm() method in CellIdentityGsm
104 private CellIdentityGsm(@NonNull CellIdentityGsm cid) { in CellIdentityGsm() method in CellIdentityGsm
109 @NonNull CellIdentityGsm copy() { in copy()
110 return new CellIdentityGsm(this); in copy()
115 public @NonNull CellIdentityGsm sanitizeLocationInfo() { in sanitizeLocationInfo()
116 return new CellIdentityGsm(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
254 if (!(other instanceof CellIdentityGsm)) { in equals()
[all …]
DCellInfoGsm.java35 private CellIdentityGsm mCellIdentityGsm;
42 mCellIdentityGsm = new CellIdentityGsm(); in CellInfoGsm()
55 CellIdentityGsm cellIdentityGsm, CellSignalStrengthGsm cellSignalStrengthGsm) { in CellInfoGsm()
65 public @NonNull CellIdentityGsm getCellIdentity() { in getCellIdentity()
70 public void setCellIdentity(CellIdentityGsm cid) { in setCellIdentity()
150 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in); in CellInfoGsm()
DCellIdentityGsm.aidl20 parcelable CellIdentityGsm;
DCellIdentity.java295 case CellInfo.TYPE_GSM: return CellIdentityGsm.createFromParcelBody(in);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/satellite/
DNtnCapabilityResolverTest.java38 import android.telephony.CellIdentityGsm;
155 CellIdentity cellIdentity = new CellIdentityGsm(0, 0, 0, in createNetworkRegistrationInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DLinkBandwidthEstimator.java40 import android.telephony.CellIdentityGsm;
1104 if (cellIdentity instanceof CellIdentityGsm) { in getTac()
1105 return ((CellIdentityGsm) cellIdentity).getLac(); in getTac()
/frameworks/base/services/core/java/com/android/server/location/gnss/
DGnssLocationProvider.java92 import android.telephony.CellIdentityGsm;
1515 case CellInfo.TYPE_GSM: cid = ((CellIdentityGsm) id).getCid(); break; in getCidFromCellIdentity()
1543 CellIdentityGsm cig = (CellIdentityGsm) ci; in setRefLocation()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java35 import android.telephony.CellIdentityGsm;
85 sNetworkTypes.put(CellIdentityGsm.class, in sNetworkTypes.put()
DRILUtils.java316 import android.telephony.CellIdentityGsm;
2291 CellIdentityGsm gsmCi = null; in convertHalCellInfo()
2621 public static CellIdentityGsm convertHalCellIdentityGsm(Object gsm) { in convertHalCellIdentityGsm()
2623 if (gsm instanceof android.hardware.radio.V1_2.CellIdentityGsm) { in convertHalCellIdentityGsm()
2624 android.hardware.radio.V1_2.CellIdentityGsm ci = in convertHalCellIdentityGsm()
2625 (android.hardware.radio.V1_2.CellIdentityGsm) gsm; in convertHalCellIdentityGsm()
2626 return new CellIdentityGsm(ci.base.lac, ci.base.cid, ci.base.arfcn, in convertHalCellIdentityGsm()
2630 } else if (gsm instanceof android.hardware.radio.V1_5.CellIdentityGsm) { in convertHalCellIdentityGsm()
2631 android.hardware.radio.V1_5.CellIdentityGsm ci = in convertHalCellIdentityGsm()
2632 (android.hardware.radio.V1_5.CellIdentityGsm) gsm; in convertHalCellIdentityGsm()
[all …]
DServiceStateTracker.java62 import android.telephony.CellIdentityGsm;
2483 case CellInfo.TYPE_GSM: cid = ((CellIdentityGsm) id).getCid(); break; in getCidFromCellIdentity()
2503 case CellInfo.TYPE_GSM: return ((CellIdentityGsm) id).getLac(); in getAreaCodeFromCellIdentity()
4391 ? new CellIdentityCdma() : new CellIdentityGsm(); in getCellIdentity()
/frameworks/base/boot/
Dpreloaded-classes3124 android.hardware.radio.V1_0.CellIdentityGsm
3192 android.hardware.radio.V1_2.CellIdentityGsm
3249 android.hardware.radio.V1_5.CellIdentityGsm
7419 android.telephony.CellIdentityGsm$1
7420 android.telephony.CellIdentityGsm
Dboot-image-profile.txt13982 HSPLandroid/telephony/CellIdentityGsm;-><init>(Landroid/os/Parcel;)V
13983 HSPLandroid/telephony/CellIdentityGsm;->updateGlobalCellId()V
25511 Landroid/hardware/radio/V1_0/CellIdentityGsm;
25579 Landroid/hardware/radio/V1_2/CellIdentityGsm;
25636 Landroid/hardware/radio/V1_5/CellIdentityGsm;
29826 Landroid/telephony/CellIdentityGsm$1;
29827 Landroid/telephony/CellIdentityGsm;
/frameworks/base/config/
Dpreloaded-classes3128 android.hardware.radio.V1_0.CellIdentityGsm
3196 android.hardware.radio.V1_2.CellIdentityGsm
3253 android.hardware.radio.V1_5.CellIdentityGsm
7450 android.telephony.CellIdentityGsm$1
7451 android.telephony.CellIdentityGsm
Dboot-image-profile.txt14046 HSPLandroid/telephony/CellIdentityGsm;-><init>(Landroid/os/Parcel;)V
14047 HSPLandroid/telephony/CellIdentityGsm;->updateGlobalCellId()V
35645 Landroid/hardware/radio/V1_0/CellIdentityGsm;
35713 Landroid/hardware/radio/V1_2/CellIdentityGsm;
35770 Landroid/hardware/radio/V1_5/CellIdentityGsm;
39987 Landroid/telephony/CellIdentityGsm$1;
39988 Landroid/telephony/CellIdentityGsm;
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt52361 Landroid/telephony/CellIdentityGsm;-><init>(IIII)V
52362 Landroid/telephony/CellIdentityGsm;-><init>(IIIIII)V
52363 Landroid/telephony/CellIdentityGsm;-><init>(IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/Stri…
52364 Landroid/telephony/CellIdentityGsm;-><init>(Landroid/os/Parcel;)V
52365 Landroid/telephony/CellIdentityGsm;-><init>(Landroid/telephony/CellIdentityGsm;)V
52366 Landroid/telephony/CellIdentityGsm;->copy()Landroid/telephony/CellIdentityGsm;
52367 Landroid/telephony/CellIdentityGsm;->createFromParcelBody(Landroid/os/Parcel;)Landroid/telephony/Ce…
52368 Landroid/telephony/CellIdentityGsm;->DBG:Z
52369 Landroid/telephony/CellIdentityGsm;->getChannelNumber()I
52370 Landroid/telephony/CellIdentityGsm;->mCid:I
[all …]

12