Home
last modified time | relevance | path

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

12

/frameworks/base/telephony/java/android/telephony/
DCellIdentity.java37 public abstract class CellIdentity implements Parcelable { class
80 protected CellIdentity(@Nullable String tag, int type, @Nullable String mcc, in CellIdentity() method in CellIdentity
206 public boolean isSameCell(@Nullable CellIdentity ci) { in isSameCell()
236 public abstract @NonNull CellIdentity sanitizeLocationInfo(); in sanitizeLocationInfo()
240 if (!(other instanceof CellIdentity)) { in equals()
244 CellIdentity o = (CellIdentity) other; in equals()
286 protected CellIdentity(String tag, int type, Parcel source) { in CellIdentity() method in CellIdentity
292 public static final @android.annotation.NonNull Creator<CellIdentity> CREATOR =
293 new Creator<CellIdentity>() {
295 public CellIdentity createFromParcel(Parcel in) {
[all …]
DBarringInfo.java248 private CellIdentity mCellIdentity;
267 public BarringInfo(@Nullable CellIdentity barringCellId, in BarringInfo()
275 @NonNull android.hardware.radio.V1_5.CellIdentity halBarringCellId, in create()
277 CellIdentity ci = CellIdentity.create(halBarringCellId); in create()
335 mCellIdentity = p.readParcelable(CellIdentity.class.getClassLoader()); in BarringInfo()
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()
314 mCellIdentity = source.readParcelable(CellIdentity.class.getClassLoader()); in NetworkRegistrationInfo()
346 mCellIdentity = CellIdentity.CREATOR.createFromParcel(p); in NetworkRegistrationInfo()
510 public CellIdentity getCellIdentity() { in getCellIdentity()
797 private CellIdentity mCellIdentity;
910 public @NonNull Builder setCellIdentity(@Nullable CellIdentity cellIdentity) { in setCellIdentity()
DCellIdentity.aidl20 parcelable CellIdentity;
DCellInfoNr.java70 public CellIdentity getCellIdentity() { in getCellIdentity()
DCellIdentityCdma.java29 public final class CellIdentityCdma extends CellIdentity {
DCellIdentityNr.java36 public final class CellIdentityNr extends CellIdentity {
DCellIdentityGsm.java35 public final class CellIdentityGsm extends CellIdentity {
DCellInfo.java211 public abstract CellIdentity getCellIdentity(); in getCellIdentity()
DCellIdentityTdscdma.java33 public final class CellIdentityTdscdma extends CellIdentity {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellIdentityTest.java20 import android.telephony.CellIdentity;
109 CellIdentity ciA = new CellIdentityLte( in testEquals()
112 CellIdentity ciB = new CellIdentityLte( in testEquals()
135 CellIdentity ci = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, in testParcel()
142 CellIdentity newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel()
152 newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel()
158 assertTrue(CellIdentity.isValidPlmn(PLMN_VALID)); in testIsValidPlmn()
163 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_SHORT)); in testIsValidPlmnInvalidPlmns()
164 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_LONG)); in testIsValidPlmnInvalidPlmns()
165 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_NON_NUM)); in testIsValidPlmnInvalidPlmns()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRegistrationFailedEvent.java20 import android.telephony.CellIdentity;
28 public final CellIdentity cellIdentity;
43 public RegistrationFailedEvent(@NonNull CellIdentity cellIdentity, in RegistrationFailedEvent()
DCellularNetworkService.java29 import android.telephony.CellIdentity;
205 private @NonNull String getPlmnFromCellIdentity(@Nullable final CellIdentity ci) { in getPlmnFromCellIdentity()
239 CellIdentity cellIdentity = CellIdentity.create(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
259 CellIdentity cellIdentity = CellIdentity.create(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
280 CellIdentity cellIdentity; in createRegistrationStateFromDataRegState()
303 cellIdentity = CellIdentity.create(dataRegState.cellIdentity); in createRegistrationStateFromDataRegState()
312 cellIdentity = CellIdentity.create(dataRegState.cellIdentity); in createRegistrationStateFromDataRegState()
322 cellIdentity = CellIdentity.create(dataRegState.base.cellIdentity); in createRegistrationStateFromDataRegState()
367 final CellIdentity cellIdentity = CellIdentity.create(regResult.cellIdentity); in getNetworkRegistrationInfo()
DPhoneNotifier.java26 import android.telephony.CellIdentity;
50 void notifyCellLocation(Phone sender, CellIdentity cellIdentity); in notifyCellLocation()
111 void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
DDefaultPhoneNotifier.java29 import android.telephony.CellIdentity;
146 public void notifyCellLocation(Phone sender, CellIdentity cellIdentity) { in notifyCellLocation()
264 public void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
DCellularNetworkValidator.java32 import android.telephony.CellIdentity;
172 CellIdentity cellIdentity = regInfo.getCellIdentity();
DRadioIndication.java93 import android.telephony.CellIdentity;
1009 android.hardware.radio.V1_5.CellIdentity cellIdentity, String chosenPlmn, in registrationFailed()
1028 CellIdentity ci = CellIdentity.create(cellIdentity); in registrationFailed()
1046 android.hardware.radio.V1_5.CellIdentity cellIdentity, in barringInfoChanged()
1059 CellIdentity ci = CellIdentity.create(cellIdentity); in barringInfoChanged()
DServiceStateTracker.java63 import android.telephony.CellIdentity;
463 private CellIdentity mCellIdentity;
1121 private int getLteEarfcn(CellIdentity cellIdentity) { in getLteEarfcn()
1309 CellIdentity cellIdentity = ((NetworkRegistrationInfo) ar.result) in handleMessage()
2167 CellIdentity cellIdentity = networkRegState.getCellIdentity(); in handlePollStateResultMessage()
2376 private static int getCidFromCellIdentity(CellIdentity id) { in getCidFromCellIdentity()
2392 private void setPhyCellInfoFromCellIdentity(ServiceState ss, CellIdentity cellIdentity) { in setPhyCellInfoFromCellIdentity()
3161 @VisibleForTesting public static @NonNull List<CellIdentity> getPrioritizedCellIdentities( in getPrioritizedCellIdentities()
3288 final List<CellIdentity> prioritizedCids = getPrioritizedCellIdentities(mNewSS); in pollStateDone()
3290 final CellIdentity primaryCellIdentity = prioritizedCids.isEmpty() in pollStateDone()
[all …]
/frameworks/base/core/java/com/android/internal/telephony/
DIPhoneStateListener.aidl21 import android.telephony.CellIdentity;
43 void onCellLocationChanged(in CellIdentity location); in onCellLocationChanged()
68 void onRegistrationFailed(in CellIdentity cellIdentity, in onRegistrationFailed()
DITelephonyRegistry.aidl24 import android.telephony.CellIdentity;
73 void notifyCellLocation(in CellIdentity cellLocation); in notifyCellLocation()
74 void notifyCellLocationForSubscriber(in int subId, in CellIdentity cellLocation); in notifyCellLocationForSubscriber()
104 void notifyRegistrationFailed(int slotIndex, int subId, in CellIdentity cellIdentity, in notifyRegistrationFailed()
/frameworks/base/core/java/android/telephony/
DPhoneStateListener.java1080 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in onRegistrationFailed()
1151 public void onCellLocationChanged(CellIdentity cellIdentity) { in onCellLocationChanged()
1381 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, in onRegistrationFailed()
DTelephonyRegistryManager.java608 public void notifyCellLocation(int subId, @NonNull CellIdentity cellLocation) { in notifyCellLocation()
666 @NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in notifyRegistrationFailed()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
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;
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java54 import android.telephony.CellIdentity;
255 private CellIdentity[] mCellIdentity;
564 mCellIdentity = new CellIdentity[numPhones]; in TelephonyRegistry()
1821 public void notifyCellLocation(CellIdentity cellLocation) { in notifyCellLocation()
1826 public void notifyCellLocationForSubscriber(int subId, CellIdentity cellLocation) { in notifyCellLocationForSubscriber()
2258 public void notifyRegistrationFailed(int phoneId, int subId, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
2267 final CellIdentity noLocationCi = cellIdentity.sanitizeLocationInfo(); in notifyRegistrationFailed()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephony.aidl35 import android.telephony.CellIdentity;
265 CellIdentity getCellLocation(String callingPkg, String callingFeatureId); in getCellLocation()

12