/aosp12/frameworks/base/telephony/java/android/telephony/ |
H A D | CellInfoNr.java | 32 private CellIdentityNr mCellIdentity; field in CellInfoNr 38 mCellIdentity = new CellIdentityNr(); in CellInfoNr() 50 mCellIdentity = sanitizeLocationInfo ? other.mCellIdentity.sanitizeLocationInfo() in CellInfoNr() 51 : other.mCellIdentity; in CellInfoNr() 59 mCellIdentity = new CellIdentityNr(cil.cellidentity); in CellInfoNr() 67 mCellIdentity = new CellIdentityNr(cil.cellIdentityNr); in CellInfoNr() 86 return mCellIdentity; in getCellIdentity() 91 mCellIdentity = cid; in setCellIdentity() 122 return super.equals(o) && mCellIdentity.equals(o.mCellIdentity) in equals() 131 .append(" " + mCellIdentity) in toString() [all …]
|
H A D | NetworkRegistrationInfo.java | 210 private CellIdentity mCellIdentity; field in NetworkRegistrationInfo 261 mCellIdentity = cellIdentity; in NetworkRegistrationInfo() 341 if (nri.mCellIdentity != null) { in NetworkRegistrationInfo() 343 nri.mCellIdentity.writeToParcel(p, 0); in NetworkRegistrationInfo() 515 return mCellIdentity; in getCellIdentity() 677 && Objects.equals(mCellIdentity, other.mCellIdentity) in equals() 698 dest.writeParcelable(mCellIdentity, 0); in writeToParcel() 752 result.mCellIdentity = null; in sanitizeLocationInfo() 802 private CellIdentity mCellIdentity; field in NetworkRegistrationInfo.Builder 916 mCellIdentity = cellIdentity; in setCellIdentity() [all …]
|
H A D | BarringInfo.java | 248 private CellIdentity mCellIdentity; field in BarringInfo 268 mCellIdentity = barringCellId; in BarringInfo() 327 if (mCellIdentity == null) return this; in createLocationInfoSanitizedCopy() 329 return new BarringInfo(mCellIdentity.sanitizeLocationInfo(), mBarringServiceInfos); in createLocationInfoSanitizedCopy() 334 mCellIdentity = p.readParcelable(CellIdentity.class.getClassLoader()); in BarringInfo() 340 dest.writeParcelable(mCellIdentity, flags); in writeToParcel() 364 int hash = mCellIdentity != null ? mCellIdentity.hashCode() : 7; in hashCode() 394 return "BarringInfo {mCellIdentity=" + mCellIdentity in toString()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
H A D | LinkBandwidthEstimatorTest.java | 81 private CellIdentityLte mCellIdentity; field in LinkBandwidthEstimatorTest 98 mCellIdentity = new CellIdentityLte(310, 260, 1234, 123456, 366); in setUp() 107 when(mPhone.getCurrentCellIdentity()).thenReturn(mCellIdentity); in setUp() 476 mCellIdentity = new CellIdentityLte(310, 260, 1235, 123457, 367); in testUseCurrentTacStatsWithEnoughData() 477 when(mPhone.getCurrentCellIdentity()).thenReturn(mCellIdentity); in testUseCurrentTacStatsWithEnoughData() 510 mCellIdentity = new CellIdentityLte(310, 260, 1234, 123456, 367); in testUseAllTacStatsIfNoEnoughDataWithCurrentTac() 511 when(mPhone.getCurrentCellIdentity()).thenReturn(mCellIdentity); in testUseAllTacStatsIfNoEnoughDataWithCurrentTac() 555 mCellIdentity = new CellIdentityLte(320, 265, 1234, 123456, 366); in testSwitchCarrierFallbackToColdStartValue() 556 when(mPhone.getCurrentCellIdentity()).thenReturn(mCellIdentity); in testSwitchCarrierFallbackToColdStartValue()
|
/aosp12/frameworks/base/services/core/java/com/android/server/ |
H A D | TelephonyRegistry.java | 326 private CellIdentity[] mCellIdentity; field in TelephonyRegistry 545 subId, mCellIdentity[phoneId], true /* hasUserSwitched */); 658 mCellIdentity = copyOf(mCellIdentity, mNumPhones); in onMultiSimConfigChanged() 701 mCellIdentity[i] = null; in onMultiSimConfigChanged() 763 mCellIdentity = new CellIdentity[numPhones]; in TelephonyRegistry() 801 mCellIdentity[i] = null; in TelephonyRegistry() 1119 r.callback.onCellLocationChanged(mCellIdentity[r.phoneId]); in listen() 2123 mCellIdentity[phoneId] = cellIdentity; in notifyCellLocationForSubscriber() 2802 pw.println("mCellIdentity=" + mCellIdentity[i]); in dump() 3441 + mCellIdentity[phoneId]); [all …]
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | ServiceStateTracker.java | 492 private CellIdentity mCellIdentity; field in ServiceStateTracker 802 mCellIdentity = null; in updatePhoneType() 1401 mCellIdentity = cellIdentity; in handleMessage() 1523 mSS.getOperatorNumeric(), getCidFromCellIdentity(mCellIdentity)); in handleMessage() 3623 boolean hasLocationChanged = mCellIdentity == null in pollStateDone() 3748 mCellIdentity = primaryCellIdentity; in pollStateDone() 3750 int areaCode = getAreaCodeFromCellIdentity(mCellIdentity); in pollStateDone() 4449 if (mCellIdentity != null) return mCellIdentity; in getCellIdentity() 4471 if (mCellIdentity != null) { in requestCellIdentity() 4472 AsyncResult.forMessage(rspMsg, mCellIdentity, null); in requestCellIdentity() [all …]
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | TelephonyTest.java | 332 protected CellIdentity mCellIdentity; field in TelephonyTest 579 doReturn(mCellIdentity).when(mPhone).getCurrentCellIdentity(); in setUp() 580 doReturn(mCellLocation).when(mCellIdentity).asCellLocation(); in setUp()
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 57972 Landroid/telephony/NetworkRegistrationState;->mCellIdentity:Landroid/telephony/CellIdentity;
|