Home
last modified time | relevance | path

Searched refs:CellIdentityNr (Results 1 – 24 of 24) sorted by relevance

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCellIdentityNrTest.java23 import android.telephony.CellIdentityNr;
52 CellIdentityNr cellIdentityNr = in testGetMethod()
74 CellIdentityNr cellIdentityNr = in testEquals_sameParameters()
75 new CellIdentityNr(PCI, TAC, NRARFCN, BANDS, MCC_STR, MNC_STR, NCI, in testEquals_sameParameters()
77 CellIdentityNr anotherCellIdentityNr = in testEquals_sameParameters()
78 new CellIdentityNr(PCI, TAC, NRARFCN, BANDS, MCC_STR, MNC_STR, NCI, in testEquals_sameParameters()
88 CellIdentityNr cellIdentityNr = in testEquals_differentParameters()
89 new CellIdentityNr(PCI, TAC, NRARFCN, BANDS, MCC_STR, MNC_STR, NCI, in testEquals_differentParameters()
91 CellIdentityNr anotherCellIdentityNr = in testEquals_differentParameters()
102 CellIdentityNr cellIdentityNr = in testParcel()
[all …]
H A DCellIdentityTest.java24 import android.telephony.CellIdentityNr;
188 CellIdentityNr cellIdentityNr = in testIsSameCell()
189 new CellIdentityNr(PCI, TAC, EARFCN, BANDS, MCC_STR, MNC_STR, curCi, ALPHA_LONG, in testIsSameCell()
219 CellIdentityNr nr = new CellIdentityNr(PCI, TAC, EARFCN, BANDS, MCC_STR, MNC_STR, CI, in testGetMccMncString()
H A DServiceStateTrackerTest.java67 import android.telephony.CellIdentityNr;
2289 private void sendRegStateUpdateForNrCellId(CellIdentityNr cellId) { in sendRegStateUpdateForNrCellId()
2393 CellIdentityNr nrCi = new CellIdentityNr( in testPhyChanBandwidthForNr()
3046 CellIdentity nrCi = new CellIdentityNr( in testGetCidFromCellIdentity()
H A DRILTest.java134 import android.telephony.CellIdentityNr;
1964 CellIdentityNr cellIdentityNr = (CellIdentityNr) cellInfoNr.getCellIdentity(); in testConvertHalCellInfoList_1_4ForNr()
1968 CellIdentityNr expectedCellIdentity = new CellIdentityNr(PCI, TAC, NRARFCN, in testConvertHalCellInfoList_1_4ForNr()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityNr.java38 public final class CellIdentityNr extends CellIdentity { class
56 public CellIdentityNr() { in CellIdentityNr() method in CellIdentityNr
103 public CellIdentityNr(@NonNull android.hardware.radio.V1_4.CellIdentityNr cid) { in CellIdentityNr() method in CellIdentityNr
110 public CellIdentityNr(@NonNull android.hardware.radio.V1_5.CellIdentityNr cid) { in CellIdentityNr() method in CellIdentityNr
119 public @NonNull CellIdentityNr sanitizeLocationInfo() { in sanitizeLocationInfo()
162 if (!(other instanceof CellIdentityNr)) { in equals()
166 CellIdentityNr o = (CellIdentityNr) other; in equals()
286 private CellIdentityNr(Parcel in) { in CellIdentityNr() method in CellIdentityNr
300 new Creator<CellIdentityNr>() {
310 return new CellIdentityNr[size];
[all …]
H A DCellInfoNr.java32 private CellIdentityNr mCellIdentity;
38 mCellIdentity = new CellIdentityNr(); in CellInfoNr()
44 mCellIdentity = CellIdentityNr.CREATOR.createFromParcel(in); in CellInfoNr()
59 mCellIdentity = new CellIdentityNr(cil.cellidentity); in CellInfoNr()
67 mCellIdentity = new CellIdentityNr(cil.cellIdentityNr); in CellInfoNr()
75 mCellIdentity = new CellIdentityNr(cil.cellIdentityNr); in CellInfoNr()
82 @CovariantReturnType(returnType = CellIdentityNr.class, presentAfter = 29)
90 public void setCellIdentity(CellIdentityNr cid) { in setCellIdentity()
H A DCellIdentity.java302 case CellInfo.TYPE_NR: return CellIdentityNr.createFromParcelBody(in);
458 return new CellIdentityNr(ci.nr()); in create()
/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/
H A DCellInfoUtil.java22 import android.telephony.CellIdentityNr;
183 } else if (cid instanceof CellIdentityNr) { in getCellIdentityMcc()
184 mcc = ((CellIdentityNr) cid).getMccString(); in getCellIdentityMcc()
207 } else if (cid instanceof CellIdentityNr) { in getCellIdentityMnc()
208 mnc = ((CellIdentityNr) cid).getMncString(); in getCellIdentityMnc()
H A DNetworkOperatorPreference.java26 import android.telephony.CellIdentityNr;
168 if (cellId instanceof CellIdentityNr) { in getOperatorNumeric()
169 final String mcc = ((CellIdentityNr) cellId).getMccString(); in getOperatorNumeric()
173 return mcc.concat(((CellIdentityNr) cellId).getMncString()); in getOperatorNumeric()
/aosp12/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
H A DGsmCellBroadcastHandler.java46 import android.telephony.CellIdentityNr;
519 } else if (ci instanceof CellIdentityNr) { in getLacAndCid()
520 lac = ((CellIdentityNr) ci).getTac(); in getLacAndCid()
521 cid = ((CellIdentityNr) ci).getPci(); in getLacAndCid()
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
H A DEpdgSelector.java26 import android.telephony.CellIdentityNr;
451 CellIdentityNr nrCellId = in resolutionMethodCellularLoc()
452 (CellIdentityNr) ((CellInfoNr) cellInfo).getCellIdentity(); in resolutionMethodCellularLoc()
/aosp12/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
H A DEpdgSelectorTest.java28 import android.telephony.CellIdentityNr;
90 @Mock private CellIdentityNr mMockCellIdentityNr;
/aosp12/hardware/interfaces/radio/1.5/
H A Dtypes.hal48 import @1.4::CellIdentityNr;
645 struct CellIdentityNr {
649 @1.4::CellIdentityNr base;
679 CellIdentityNr cellIdentityNr;
727 CellIdentityNr nr;
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DLinkBandwidthEstimator.java41 import android.telephony.CellIdentityNr;
966 if (cellIdentity instanceof CellIdentityNr) { in getTac()
967 return ((CellIdentityNr) cellIdentity).getTac(); in getTac()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java68 import android.telephony.CellIdentityNr;
2564 case CellInfo.TYPE_NR: cid = ((CellIdentityNr) id).getNci(); break; in getCidFromCellIdentity()
2584 case CellInfo.TYPE_NR: return ((CellIdentityNr) id).getTac(); in getAreaCodeFromCellIdentity()
2641 } else if (cellIdentity instanceof CellIdentityNr) { in setPhyCellInfoFromCellIdentity()
2676 || cellIdentity instanceof CellIdentityNr)) { in getPrimaryPhysicalChannelConfigForCell()
2686 pci = ((CellIdentityNr) cellIdentity).getPci(); in getPrimaryPhysicalChannelConfigForCell()
5313 arfcn = ((CellIdentityNr) cellIdentity).getNrarfcn(); in updateServiceStateArfcnRsrpBoost()
/aosp12/hardware/interfaces/radio/1.6/
H A Dtypes.hal43 import @1.5::CellIdentityNr;
644 CellIdentityNr cellIdentityNr;
/aosp12/packages/modules/NetworkStack/src/com/android/server/connectivity/
H A DNetworkMonitor.java132 import android.telephony.CellIdentityNr;
1851 return ((CellIdentityNr) ((CellInfoNr) cell).getCellIdentity()).getMccString(); in getMccFromCellInfo()
/aosp12/hardware/interfaces/radio/1.4/
H A Dtypes.hal1580 CellIdentityNr cellidentity;
1800 struct CellIdentityNr {
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes2655 android.hardware.radio.V1_4.CellIdentityNr
2681 android.hardware.radio.V1_5.CellIdentityNr
6531 android.telephony.CellIdentityNr$1
6532 android.telephony.CellIdentityNr
H A Dboot-image-profile.txt25662 Landroid/hardware/radio/V1_4/CellIdentityNr;
25691 Landroid/hardware/radio/V1_5/CellIdentityNr;
29992 Landroid/telephony/CellIdentityNr$1;
29993 Landroid/telephony/CellIdentityNr;
/aosp12/frameworks/base/config/
H A Dpreloaded-classes2653 android.hardware.radio.V1_4.CellIdentityNr
2679 android.hardware.radio.V1_5.CellIdentityNr
6553 android.telephony.CellIdentityNr$1
6554 android.telephony.CellIdentityNr
H A Dboot-image-profile.txt35299 Landroid/hardware/radio/V1_4/CellIdentityNr;
35328 Landroid/hardware/radio/V1_5/CellIdentityNr;
39656 Landroid/telephony/CellIdentityNr$1;
39657 Landroid/telephony/CellIdentityNr;
/aosp12/frameworks/base/core/api/
H A Dsystem-current.txt11278 public final class CellIdentityNr extends android.telephony.CellIdentity {
11280 method @NonNull public android.telephony.CellIdentityNr sanitizeLocationInfo();
H A Dcurrent.txt41185 public final class CellIdentityNr extends android.telephony.CellIdentity {
41195 …onNull public static final android.os.Parcelable.Creator<android.telephony.CellIdentityNr> CREATOR;