Searched refs:mCellIdentity (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/telephony/java/android/telephony/ |
D | CellInfoNr.java | 32 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 …]
|
D | NetworkRegistrationInfo.java | 210 private CellIdentity mCellIdentity; field in NetworkRegistrationInfo 261 mCellIdentity = cellIdentity; in NetworkRegistrationInfo() 314 mCellIdentity = source.readParcelable(CellIdentity.class.getClassLoader()); in NetworkRegistrationInfo() 340 if (nri.mCellIdentity != null) { in NetworkRegistrationInfo() 342 nri.mCellIdentity.writeToParcel(p, 0); in NetworkRegistrationInfo() 346 mCellIdentity = CellIdentity.CREATOR.createFromParcel(p); in NetworkRegistrationInfo() 511 return mCellIdentity; in getCellIdentity() 637 .append(" cellIdentity=").append(mCellIdentity) in toString() 650 mCellIdentity, mVoiceSpecificInfo, mDataSpecificInfo, mNrState, mRplmn, in hashCode() 672 && Objects.equals(mCellIdentity, other.mCellIdentity) in equals() [all …]
|
D | BarringInfo.java | 248 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/ |
D | TelephonyRegistry.java | 255 private CellIdentity[] mCellIdentity; field in TelephonyRegistry 356 mCellIdentity[sub]); 469 mCellIdentity = copyOf(mCellIdentity, mNumPhones); in onMultiSimConfigChanged() 506 mCellIdentity[i] = null; in onMultiSimConfigChanged() 564 mCellIdentity = new CellIdentity[numPhones]; in TelephonyRegistry() 595 mCellIdentity[i] = null; in TelephonyRegistry() 902 if (DBG_LOC) log("listen: mCellIdentity = " + mCellIdentity[phoneId]); in listen() 905 r.callback.onCellLocationChanged(mCellIdentity[phoneId]); in listen() 1839 mCellIdentity[phoneId] = cellLocation; in notifyCellLocationForSubscriber() 2366 pw.println("mCellIdentity=" + mCellIdentity[i]); in dump() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ServiceStateTracker.java | 463 private CellIdentity mCellIdentity; field in ServiceStateTracker 755 mCellIdentity = null; in updatePhoneType() 1312 mCellIdentity = cellIdentity; in handleMessage() 1432 mSS.getOperatorNumeric(), getCidFromCellIdentity(mCellIdentity)); in handleMessage() 3293 boolean hasLocationChanged = mCellIdentity == null in pollStateDone() 3294 ? primaryCellIdentity != null : !mCellIdentity.isSameCell(primaryCellIdentity); in pollStateDone() 3419 mCellIdentity = primaryCellIdentity; in pollStateDone() 4100 if (mCellIdentity != null) return mCellIdentity; in getCellIdentity() 4122 if (mCellIdentity != null) { in requestCellIdentity() 4123 AsyncResult.forMessage(rspMsg, mCellIdentity, null); in requestCellIdentity() [all …]
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 68672 Landroid/telephony/NetworkRegistrationState;->mCellIdentity:Landroid/telephony/CellIdentity;
|