/aosp12/frameworks/base/telephony/java/android/telephony/ |
H A D | CellIdentity.java | 37 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 D | NetworkRegistrationInfo.java | 210 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 D | BarringInfo.java | 248 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 D | CellIdentity.aidl | 20 parcelable CellIdentity;
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | CellIdentityTest.java | 20 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 D | ServiceStateTrackerTest.java | 63 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 D | CellInfoUtil.java | 19 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 D | NetworkOperatorPreference.java | 23 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 D | CellularNetworkService.java | 30 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 D | RegistrationFailedEvent.java | 20 import android.telephony.CellIdentity; 28 public final CellIdentity cellIdentity; 43 public RegistrationFailedEvent(@NonNull CellIdentity cellIdentity, in RegistrationFailedEvent()
|
H A D | PhoneNotifier.java | 25 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 D | DefaultPhoneNotifier.java | 25 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 D | CellularNetworkValidator.java | 32 import android.telephony.CellIdentity; 172 CellIdentity cellIdentity = regInfo.getCellIdentity();
|
H A D | ServiceStateTracker.java | 64 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 D | RadioIndication.java | 99 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 D | IPhoneStateListener.aidl | 21 import android.telephony.CellIdentity; 45 void onCellLocationChanged(in CellIdentity location); in onCellLocationChanged() 71 void onRegistrationFailed(in CellIdentity cellIdentity, in onRegistrationFailed()
|
H A D | ITelephonyRegistry.aidl | 24 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 D | CellInfoUtil.java | 19 import android.telephony.CellIdentity; 52 public static CellInfo wrapCellInfoWithCellIdentity(CellIdentity cellIdentity) { in wrapCellInfoWithCellIdentity()
|
/aosp12/hardware/interfaces/radio/1.5/ |
H A D | IRadioIndication.hal | 42 * @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 D | IRadioResponse.hal | 24 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 D | radio_indication.cpp | 29 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 D | IccRecords.java | 29 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 D | radio_indication.cpp | 48 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 D | PhoneStateListener.java | 1296 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 D | TelephonyCallback.java | 1251 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()
|