Home
last modified time | relevance | path

Searched refs:mCellIdentity (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DCellInfoNr.java32 private final CellIdentityNr mCellIdentity; field in CellInfoNr
37 mCellIdentity = CellIdentityNr.CREATOR.createFromParcel(in); in CellInfoNr()
43 mCellIdentity = sanitizeLocationInfo ? other.mCellIdentity.sanitizeLocationInfo() in CellInfoNr()
44 : other.mCellIdentity; in CellInfoNr()
52 mCellIdentity = new CellIdentityNr(cil.cellidentity); in CellInfoNr()
60 mCellIdentity = new CellIdentityNr(cil.cellIdentityNr); in CellInfoNr()
71 return mCellIdentity; in getCellIdentity()
92 return Objects.hash(super.hashCode(), mCellIdentity, mCellSignalStrength); in hashCode()
102 return super.equals(o) && mCellIdentity.equals(o.mCellIdentity) in equals()
111 .append(" " + mCellIdentity) in toString()
[all …]
DNetworkRegistrationInfo.java210 private CellIdentity mCellIdentity; field in NetworkRegistrationInfo
258 mCellIdentity = cellIdentity; in NetworkRegistrationInfo()
313 mCellIdentity = source.readParcelable(CellIdentity.class.getClassLoader()); in NetworkRegistrationInfo()
337 if (nri.mCellIdentity != null) { in NetworkRegistrationInfo()
339 nri.mCellIdentity.writeToParcel(p, 0); in NetworkRegistrationInfo()
343 mCellIdentity = CellIdentity.CREATOR.createFromParcel(p); in NetworkRegistrationInfo()
510 return mCellIdentity; in getCellIdentity()
614 .append(" cellIdentity=").append(mCellIdentity) in toString()
626 mCellIdentity, mVoiceSpecificInfo, mDataSpecificInfo, mNrState, mRplmn); in hashCode()
646 && Objects.equals(mCellIdentity, other.mCellIdentity) in equals()
[all …]
DBarringInfo.java248 private CellIdentity mCellIdentity; field in BarringInfo
269 mCellIdentity = barringCellId; in BarringInfo()
328 if (mCellIdentity == null) return this; in createLocationInfoSanitizedCopy()
330 return new BarringInfo(mCellIdentity.sanitizeLocationInfo(), mBarringServiceInfos); in createLocationInfoSanitizedCopy()
335 mCellIdentity = p.readParcelable(CellIdentity.class.getClassLoader()); in BarringInfo()
341 dest.writeParcelable(mCellIdentity, flags); in writeToParcel()
365 int hash = mCellIdentity != null ? mCellIdentity.hashCode() : 7; in hashCode()
395 return "BarringInfo {mCellIdentity=" + mCellIdentity in toString()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java255 private CellIdentity[] mCellIdentity; field in TelephonyRegistry
360 mCellIdentity[sub]);
473 mCellIdentity = copyOf(mCellIdentity, mNumPhones); in onMultiSimConfigChanged()
510 mCellIdentity[i] = null; in onMultiSimConfigChanged()
568 mCellIdentity = new CellIdentity[numPhones]; in TelephonyRegistry()
599 mCellIdentity[i] = null; in TelephonyRegistry()
906 if (DBG_LOC) log("listen: mCellIdentity = " + mCellIdentity[phoneId]); in listen()
909 r.callback.onCellLocationChanged(mCellIdentity[phoneId]); in listen()
1844 mCellIdentity[phoneId] = cellLocation; in notifyCellLocationForSubscriber()
2372 pw.println("mCellIdentity=" + mCellIdentity[i]); in dump()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java453 private CellIdentity mCellIdentity; field in ServiceStateTracker
745 mCellIdentity = null; in updatePhoneType()
1301 mCellIdentity = cellIdentity; in handleMessage()
1421 mSS.getOperatorNumeric(), getCidFromCellIdentity(mCellIdentity)); in handleMessage()
3283 boolean hasLocationChanged = mCellIdentity == null in pollStateDone()
3284 ? primaryCellIdentity != null : !mCellIdentity.isSameCell(primaryCellIdentity); in pollStateDone()
3406 mCellIdentity = primaryCellIdentity; in pollStateDone()
4087 if (mCellIdentity != null) return mCellIdentity; in getCellIdentity()
4109 if (mCellIdentity != null) { in requestCellIdentity()
4110 AsyncResult.forMessage(rspMsg, mCellIdentity, null); in requestCellIdentity()
[all …]