Lines Matching refs:mCellIdentity
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()
120 mCellIdentity.writeToParcel(dest, flags); in writeToParcel()