/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellIdentityTest.java | 20 import android.telephony.CellIdentity; 110 CellIdentity ciA = new CellIdentityLte( in testEquals() 113 CellIdentity ciB = new CellIdentityLte( in testEquals() 136 CellIdentity ci = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, in testParcel() 143 CellIdentity newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel() 153 newCi = CellIdentity.CREATOR.createFromParcel(p); in testParcel() 159 assertTrue(CellIdentity.isValidPlmn(PLMN_VALID)); in testIsValidPlmn() 164 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_SHORT)); in testIsValidPlmnInvalidPlmns() 165 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_LONG)); in testIsValidPlmnInvalidPlmns() 166 assertFalse(CellIdentity.isValidPlmn(PLMN_INVALID_NON_NUM)); in testIsValidPlmnInvalidPlmns() [all …]
|
D | DisplayInfoControllerTest.java | 32 import android.telephony.CellIdentity; 136 private static String getPlmnFromCellIdentity(final CellIdentity ci) { in getPlmnFromCellIdentity()
|
D | CellularNetworkServiceTest.java | 228 regResult.cellIdentity = new android.hardware.radio.V1_5.CellIdentity(); in testGetNetworkRegistrationInfoV1_5() 326 regResult.cellIdentity = new android.hardware.radio.V1_5.CellIdentity(); in testGetNetworkRegistrationInfoV1_6WithLte() 421 regResult.cellIdentity = new android.hardware.radio.V1_5.CellIdentity(); in testGetNetworkRegistrationInfoV1_6WithNr()
|
D | TelephonyRegistryTest.java | 51 import android.telephony.CellIdentity; 117 private CellIdentity mCellIdentityForRegiFail; 272 public void onRegistrationFailed(@android.annotation.NonNull CellIdentity cellIdentity, in onRegistrationFailed() 1073 CellIdentity cellIdentity = in checkRegistrationFailedEventWithLocationPermission() 1354 CellIdentity cellIdentity = new CellIdentityGsm(-1, -1, -1, -1, null, null, null, null, in testNotifyCellLocationForSubscriberByUserSwitched()
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentity.java | 36 public abstract class CellIdentity implements Parcelable { class 78 protected CellIdentity(@Nullable String tag, int type, @Nullable String mcc, in CellIdentity() method in CellIdentity 204 public boolean isSameCell(@Nullable CellIdentity ci) { in isSameCell() 233 public abstract @NonNull CellIdentity sanitizeLocationInfo(); in sanitizeLocationInfo() 237 if (!(other instanceof CellIdentity)) { in equals() 241 CellIdentity o = (CellIdentity) other; in equals() 283 protected CellIdentity(String tag, int type, Parcel source) { in CellIdentity() method in CellIdentity 289 public static final @android.annotation.NonNull Creator<CellIdentity> CREATOR = 290 new Creator<CellIdentity>() { 292 public CellIdentity createFromParcel(Parcel in) { [all …]
|
D | NetworkRegistrationInfo.java | 261 private CellIdentity mCellIdentity; 307 @Nullable CellIdentity cellIdentity, @Nullable String rplmn, in NetworkRegistrationInfo() 340 @Nullable CellIdentity cellIdentity, @Nullable String rplmn, in NetworkRegistrationInfo() 357 @Nullable CellIdentity cellIdentity, @Nullable String rplmn, in NetworkRegistrationInfo() 382 …mCellIdentity = source.readParcelable(CellIdentity.class.getClassLoader(), android.telephony.CellI… in NetworkRegistrationInfo() 417 mCellIdentity = CellIdentity.CREATOR.createFromParcel(p); in NetworkRegistrationInfo() 675 public CellIdentity getCellIdentity() { in getCellIdentity() 1006 private CellIdentity mCellIdentity; 1153 public @NonNull Builder setCellIdentity(@Nullable CellIdentity cellIdentity) { in setCellIdentity()
|
D | BarringInfo.java | 265 private CellIdentity mCellIdentity; 283 public BarringInfo(@Nullable CellIdentity barringCellId, in BarringInfo() 315 …mCellIdentity = p.readParcelable(CellIdentity.class.getClassLoader(), android.telephony.CellIdenti… in BarringInfo()
|
D | CellIdentity.aidl | 20 parcelable CellIdentity;
|
D | CellInfoNr.java | 69 public CellIdentity getCellIdentity() { in getCellIdentity()
|
D | CellInfo.java | 216 public abstract CellIdentity getCellIdentity(); in getCellIdentity()
|
D | CellIdentityCdma.java | 34 public final class CellIdentityCdma extends CellIdentity {
|
D | CellIdentityNr.java | 38 public final class CellIdentityNr extends CellIdentity {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RegistrationFailedEvent.java | 20 import android.telephony.CellIdentity; 28 public final CellIdentity cellIdentity; 43 public RegistrationFailedEvent(@NonNull CellIdentity cellIdentity, in RegistrationFailedEvent()
|
D | PhoneNotifier.java | 26 import android.telephony.CellIdentity; 69 void notifyCellLocation(Phone sender, CellIdentity cellIdentity); in notifyCellLocation() 128 void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
|
D | CellularNetworkService.java | 33 import android.telephony.CellIdentity; 81 private static final Map<Class<? extends CellIdentity>, List<Integer>> sNetworkTypes; 265 private @NonNull String getPlmnFromCellIdentity(@Nullable final CellIdentity ci) { in getPlmnFromCellIdentity() 302 CellIdentity cellIdentity = in createRegistrationStateFromVoiceRegState() 351 CellIdentity cellIdentity = in createRegistrationStateFromDataRegState() 379 final CellIdentity cellIdentity = in getNetworkRegistrationInfo() 454 final CellIdentity cellIdentity = in getNetworkRegistrationInfoAidl() 560 final CellIdentity cellIdentity = in getNetworkRegistrationInfo1_6() 680 int networkType, CellIdentity ci, int carrierId) { in getNetworkTypeForCellIdentity()
|
D | NetworkIndication.java | 45 import android.telephony.CellIdentity; 81 android.hardware.radio.network.CellIdentity cellIdentity, in barringInfoChanged() 321 android.hardware.radio.network.CellIdentity cellIdentity, String chosenPlmn, in registrationFailed() 324 CellIdentity ci = RILUtils.convertHalCellIdentity(cellIdentity); in registrationFailed()
|
D | DefaultPhoneNotifier.java | 26 import android.telephony.CellIdentity; 154 public void notifyCellLocation(Phone sender, CellIdentity cellIdentity) { in notifyCellLocation() 265 public void notifyRegistrationFailed(Phone sender, @NonNull CellIdentity cellIdentity, in notifyRegistrationFailed()
|
D | ServiceStateTracker.java | 60 import android.telephony.CellIdentity; 465 private CellIdentity mCellIdentity; 466 @Nullable private CellIdentity mLastKnownCellIdentity; 1358 CellIdentity cellIdentity = ((NetworkRegistrationInfo) ar.result) in handleMessage() 2259 CellIdentity cellIdentity = networkRegState.getCellIdentity(); in handlePollStateResultMessage() 2479 private static long getCidFromCellIdentity(CellIdentity id) { in getCidFromCellIdentity() 2500 private static int getAreaCodeFromCellIdentity(CellIdentity id) { in getAreaCodeFromCellIdentity() 2512 private void setPhyCellInfoFromCellIdentity(ServiceState ss, CellIdentity cellIdentity) { in setPhyCellInfoFromCellIdentity() 2597 List<PhysicalChannelConfig> pccs, CellIdentity cellIdentity) { in getPrimaryPhysicalChannelConfigForCell() 3400 @VisibleForTesting public static @NonNull List<CellIdentity> getPrioritizedCellIdentities( in getPrioritizedCellIdentities() [all …]
|
/frameworks/base/core/java/com/android/internal/telephony/ |
D | IPhoneStateListener.aidl | 21 import android.telephony.CellIdentity; 46 void onCellLocationChanged(in CellIdentity location); in onCellLocationChanged() 73 void onRegistrationFailed(in CellIdentity cellIdentity, in onRegistrationFailed()
|
D | ITelephonyRegistry.aidl | 24 import android.telephony.CellIdentity; 68 void notifyCellLocationForSubscriber(in int subId, in CellIdentity cellLocation); in notifyCellLocationForSubscriber() 98 void notifyRegistrationFailed(int slotIndex, int subId, in CellIdentity cellIdentity, in notifyRegistrationFailed()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/satellite/ |
D | NtnCapabilityResolverTest.java | 37 import android.telephony.CellIdentity; 155 CellIdentity cellIdentity = new CellIdentityGsm(0, 0, 0, in createNetworkRegistrationInfo()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/ |
D | CellularNetworkValidator.java | 33 import android.telephony.CellIdentity; 165 CellIdentity cellIdentity = regInfo.getCellIdentity();
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | IccRecords.java | 29 import android.telephony.CellIdentity; 66 public static final int PLMN_MIN_LENGTH = CellIdentity.MCC_LENGTH 67 + CellIdentity.MNC_MIN_LENGTH; 68 public static final int PLMN_MAX_LENGTH = CellIdentity.MCC_LENGTH 69 + CellIdentity.MNC_MAX_LENGTH;
|
/frameworks/base/core/java/android/telephony/ |
D | PhoneStateListener.java | 1285 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in onRegistrationFailed() 1361 public void onCellLocationChanged(CellIdentity cellIdentity) { in onCellLocationChanged() 1633 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, in onRegistrationFailed()
|
D | TelephonyCallback.java | 1360 void onRegistrationFailed(@NonNull CellIdentity cellIdentity, @NonNull String chosenPlmn, in onRegistrationFailed() 1766 public void onCellLocationChanged(CellIdentity cellIdentity) { in onCellLocationChanged() 2011 public void onRegistrationFailed(@NonNull CellIdentity cellIdentity, in onRegistrationFailed()
|