Home
last modified time | relevance | path

Searched refs:CellIdentity (Results 1 – 25 of 69) sorted by relevance

123

/aosp12/frameworks/base/telephony/java/android/telephony/
H A DCellIdentity.java37 public abstract class CellIdentity implements Parcelable { class
205 public boolean isSameCell(@Nullable CellIdentity ci) { in isSameCell()
234 public abstract @NonNull CellIdentity sanitizeLocationInfo(); in sanitizeLocationInfo()
238 if (!(other instanceof CellIdentity)) { in equals()
242 CellIdentity o = (CellIdentity) other; in equals()
291 new Creator<CellIdentity>() {
308 public CellIdentity[] newArray(int size) {
309 return new CellIdentity[size];
364 public static CellIdentity create(android.hardware.radio.V1_0.CellIdentity cellIdentity) { in create()
404 public static CellIdentity create(android.hardware.radio.V1_2.CellIdentity cellIdentity) { in create()
[all …]
H A DNetworkRegistrationInfo.java210 private CellIdentity mCellIdentity;
251 @Nullable CellIdentity cellIdentity, @Nullable String rplmn) { in NetworkRegistrationInfo()
275 @Nullable CellIdentity cellIdentity, @Nullable String rplmn, in NetworkRegistrationInfo()
293 @Nullable CellIdentity cellIdentity, @Nullable String rplmn, in NetworkRegistrationInfo()
315 mCellIdentity = source.readParcelable(CellIdentity.class.getClassLoader()); in NetworkRegistrationInfo()
347 mCellIdentity = CellIdentity.CREATOR.createFromParcel(p); in NetworkRegistrationInfo()
514 public CellIdentity getCellIdentity() { in getCellIdentity()
802 private CellIdentity mCellIdentity;
915 public @NonNull Builder setCellIdentity(@Nullable CellIdentity cellIdentity) { in setCellIdentity()
H A DBarringInfo.java248 private CellIdentity mCellIdentity;
266 public BarringInfo(@Nullable CellIdentity barringCellId, in BarringInfo()
274 @NonNull android.hardware.radio.V1_5.CellIdentity halBarringCellId, in create()
276 CellIdentity ci = CellIdentity.create(halBarringCellId); in create()
334 mCellIdentity = p.readParcelable(CellIdentity.class.getClassLoader()); in BarringInfo()
H A DCellIdentity.aidl20 parcelable CellIdentity;
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCellIdentityTest.java20 import android.telephony.CellIdentity;
109 CellIdentity ciA = new CellIdentityLte( in testEquals()
112 CellIdentity ciB = new CellIdentityLte( in testEquals()
142 CellIdentity newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel()
152 newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel()
171 CellIdentity ciA = new CellIdentityLte( in testIsSameCell()
174 CellIdentity ciB = new CellIdentityLte( in testIsSameCell()
177 CellIdentity ciC = new CellIdentityLte( in testIsSameCell()
180 CellIdentity ciD = new CellIdentityLte( in testIsSameCell()
206 CellIdentity lte = new CellIdentityLte( in testGetMccMncString()
[all …]
H A DServiceStateTrackerTest.java63 import android.telephony.CellIdentity;
357 private static String getPlmnFromCellIdentity(final CellIdentity ci) { in getPlmnFromCellIdentity()
2063 private void changeRegState(int state, CellIdentity cid, int rat) { in changeRegState()
2965 int domain, int transport, CellIdentity ci, boolean isRegistered) { in makeNetworkRegistrationInfo()
2985 List<CellIdentity> cids; in testCellIdentitySort()
3039 CellIdentity gsmCi = new CellIdentityGsm( in testGetCidFromCellIdentity()
3041 CellIdentity wcdmaCi = new CellIdentityWcdma( in testGetCidFromCellIdentity()
3043 CellIdentity tdscdmaCi = new CellIdentityTdscdma( in testGetCidFromCellIdentity()
3045 CellIdentity lteCi = new CellIdentityLte(0, 0, 4, 0, 0); in testGetCidFromCellIdentity()
3046 CellIdentity nrCi = new CellIdentityNr( in testGetCidFromCellIdentity()
[all …]
/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/
H A DCellInfoUtil.java19 import android.telephony.CellIdentity;
61 public static String getNetworkTitle(CellIdentity cellId, String networkMccMnc) { in getNetworkTitle()
84 public static CellIdentity getCellIdentity(CellInfo cellInfo) { in getCellIdentity()
88 CellIdentity cellId = null; in getCellIdentity()
145 final CellIdentity cid = getCellIdentity(cellInfo); in cellInfoToString()
160 public static String getCellIdentityMccMnc(CellIdentity cid) { in getCellIdentityMccMnc()
172 public static String getCellIdentityMcc(CellIdentity cid) { in getCellIdentityMcc()
196 public static String getCellIdentityMnc(CellIdentity cid) { in getCellIdentityMnc()
H A DNetworkOperatorPreference.java23 import android.telephony.CellIdentity;
58 private CellIdentity mCellId;
70 public NetworkOperatorPreference(Context context, CellIdentity connectedCellId, in NetworkOperatorPreference()
92 private void updateCell(CellInfo cellinfo, CellIdentity cellId) { in updateCell()
152 final CellIdentity cellId = mCellId; in getOperatorNumeric()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCellularNetworkService.java30 import android.telephony.CellIdentity;
208 private @NonNull String getPlmnFromCellIdentity(@Nullable final CellIdentity ci) { in getPlmnFromCellIdentity()
248 CellIdentity cellIdentity = CellIdentity.create(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
268 CellIdentity cellIdentity = CellIdentity.create(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
289 CellIdentity cellIdentity; in createRegistrationStateFromDataRegState()
318 cellIdentity = CellIdentity.create(dataRegState.cellIdentity); in createRegistrationStateFromDataRegState()
327 cellIdentity = CellIdentity.create(dataRegState.cellIdentity); in createRegistrationStateFromDataRegState()
337 cellIdentity = CellIdentity.create(dataRegState.base.cellIdentity); in createRegistrationStateFromDataRegState()
382 final CellIdentity cellIdentity = CellIdentity.create(regResult.cellIdentity); in getNetworkRegistrationInfo()
462 final CellIdentity cellIdentity = CellIdentity.create(regResult.cellIdentity); in getNetworkRegistrationInfo1_6()
H A DRegistrationFailedEvent.java20 import android.telephony.CellIdentity;
28 public final CellIdentity cellIdentity;
43 public RegistrationFailedEvent(@NonNull CellIdentity cellIdentity, in RegistrationFailedEvent()
H A DPhoneNotifier.java25 import android.telephony.CellIdentity;
64 void notifyCellLocation(Phone sender, CellIdentity cellIdentity); in notifyCellLocation()
117 void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
H A DDefaultPhoneNotifier.java25 import android.telephony.CellIdentity;
137 public void notifyCellLocation(Phone sender, CellIdentity cellIdentity) { in notifyCellLocation()
229 public void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
H A DCellularNetworkValidator.java32 import android.telephony.CellIdentity;
172 CellIdentity cellIdentity = regInfo.getCellIdentity();
H A DServiceStateTracker.java64 import android.telephony.CellIdentity;
492 private CellIdentity mCellIdentity;
2556 private static long getCidFromCellIdentity(CellIdentity id) { in getCidFromCellIdentity()
2577 private static int getAreaCodeFromCellIdentity(CellIdentity id) { in getAreaCodeFromCellIdentity()
2674 List<PhysicalChannelConfig> pccs, CellIdentity cellIdentity) { in getPrimaryPhysicalChannelConfigForCell()
3822 for (CellIdentity cid : prioritizedCids) { in pollStateDone()
4448 public CellIdentity getCellIdentity() { in getCellIdentity()
4451 CellIdentity ci = getCellIdentityFromCellInfo(getAllCellInfo()); in getCellIdentity()
4490 CellIdentity cl = null; in getCellIdentityFromCellInfo()
4494 CellIdentity c = ci.getCellIdentity(); in getCellIdentityFromCellInfo()
[all …]
H A DRadioIndication.java99 import android.telephony.CellIdentity;
1131 android.hardware.radio.V1_5.CellIdentity cellIdentity, String chosenPlmn, in registrationFailed()
1135 CellIdentity ci = CellIdentity.create(cellIdentity); in registrationFailed()
1166 android.hardware.radio.V1_5.CellIdentity cellIdentity, in barringInfoChanged()
1179 CellIdentity ci = CellIdentity.create(cellIdentity); in barringInfoChanged()
/aosp12/frameworks/base/core/java/com/android/internal/telephony/
H A DIPhoneStateListener.aidl21 import android.telephony.CellIdentity;
45 void onCellLocationChanged(in CellIdentity location); in onCellLocationChanged()
71 void onRegistrationFailed(in CellIdentity cellIdentity, in onRegistrationFailed()
H A DITelephonyRegistry.aidl24 import android.telephony.CellIdentity;
64 void notifyCellLocationForSubscriber(in int subId, in CellIdentity cellLocation); in notifyCellLocationForSubscriber()
92 void notifyRegistrationFailed(int slotIndex, int subId, in CellIdentity cellIdentity, in notifyRegistrationFailed()
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DCellInfoUtil.java19 import android.telephony.CellIdentity;
52 public static CellInfo wrapCellInfoWithCellIdentity(CellIdentity cellIdentity) { in wrapCellInfoWithCellIdentity()
/aosp12/hardware/interfaces/radio/1.5/
H A DIRadioIndication.hal42 * @param cellIdentity the CellIdentity, which must include the globally unique identifier for
60 RadioIndicationType type, CellIdentity cellIdentity, string chosenPlmn,
78 RadioIndicationType type, CellIdentity cellIdentity, vec<BarringInfo> barringInfos);
H A DIRadioResponse.hal24 import @1.5::CellIdentity;
195 * @param cellIdentity CellIdentity for the barring infos.
204 oneway getBarringInfoResponse(RadioResponseInfo info, CellIdentity cellIdentity,
/aosp12/hardware/interfaces/radio/1.5/vts/functional/
H A Dradio_indication.cpp29 const ::android::hardware::radio::V1_5::CellIdentity& /*cellIdentity*/, in registrationFailed()
38 const ::android::hardware::radio::V1_5::CellIdentity& /*cellIdentity*/, in barringInfoChanged()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccRecords.java29 import android.telephony.CellIdentity;
59 public static final int PLMN_MIN_LENGTH = CellIdentity.MCC_LENGTH
60 + CellIdentity.MNC_MIN_LENGTH;
61 public static final int PLMN_MAX_LENGTH = CellIdentity.MCC_LENGTH
62 + CellIdentity.MNC_MAX_LENGTH;
/aosp12/hardware/interfaces/radio/1.6/vts/functional/
H A Dradio_indication.cpp48 const ::android::hardware::radio::V1_5::CellIdentity& /*cellIdentity*/, in registrationFailed()
57 const ::android::hardware::radio::V1_5::CellIdentity& /*cellIdentity*/, in barringInfoChanged()
/aosp12/frameworks/base/core/java/android/telephony/
H A DPhoneStateListener.java1296 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in onRegistrationFailed()
1374 public void onCellLocationChanged(CellIdentity cellIdentity) { in onCellLocationChanged()
1610 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, in onRegistrationFailed()
H A DTelephonyCallback.java1251 void onRegistrationFailed(@NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in onRegistrationFailed()
1438 public void onCellLocationChanged(CellIdentity cellIdentity) { in onCellLocationChanged()
1684 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, in onRegistrationFailed()

123