Searched refs:mLac (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | SmsCbLocation.java | 35 private final int mLac; field in SmsCbLocation 44 mLac = -1; in SmsCbLocation() 54 mLac = -1; in SmsCbLocation() 64 mLac = lac; in SmsCbLocation() 73 mLac = in.readInt(); in SmsCbLocation() 90 return mLac; in getLac() 104 hash = hash * 31 + mLac; in hashCode() 118 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid; in equals() 123 return '[' + mPlmn + ',' + mLac + ',' + mCid + ']'; in toString() 136 if (mLac != -1 && mLac != area.mLac) { in isInLocationArea() [all …]
|
/frameworks/base/telephony/java/android/telephony/gsm/ |
D | GsmCellLocation.java | 26 private int mLac; field in GsmCellLocation 34 mLac = -1; in GsmCellLocation() 43 mLac = bundle.getInt("lac", -1); in GsmCellLocation() 52 return mLac; in getLac() 77 mLac = -1; in setStateInvalid() 86 mLac = lac; in setLacAndCid() 100 return mLac ^ mCid; in hashCode() 117 return equalsHandlesNulls(mLac, s.mLac) && equalsHandlesNulls(mCid, s.mCid) in equals() 123 return "["+ mLac + "," + mCid + "," + mPsc + "]"; in toString() 143 m.putInt("lac", mLac); in fillInNotifierBundle() [all …]
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityTdscdma.java | 33 private final int mLac; field in CellIdentityTdscdma 44 mLac = Integer.MAX_VALUE; in CellIdentityTdscdma() 74 mLac = lac; in CellIdentityTdscdma() 93 mLac = lac; in CellIdentityTdscdma() 99 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma() 127 return mLac; in getLac() 146 return Objects.hash(mLac, mCid, mCpid, super.hashCode()); in hashCode() 162 && mLac == o.mLac in equals() 173 .append(" mLac=").append(mLac) in toString() 186 dest.writeInt(mLac); in writeToParcel() [all …]
|
D | NeighboringCellInfo.java | 58 private int mLac; field in NeighboringCellInfo 82 mLac = UNKNOWN_CID; in NeighboringCellInfo() 118 mLac = UNKNOWN_CID; in NeighboringCellInfo() 139 mLac = Integer.parseInt(location.substring(0, 4), 16); in NeighboringCellInfo() 153 mLac = UNKNOWN_CID; in NeighboringCellInfo() 164 mLac = in.readInt(); in NeighboringCellInfo() 186 return mLac; in getLac() 267 } else if(mLac != UNKNOWN_CID && mCid != UNKNOWN_CID) { in toString() 268 sb.append(Integer.toHexString(mLac)) in toString() 283 dest.writeInt(mLac); in writeToParcel()
|
D | CellIdentityWcdma.java | 33 private final int mLac; field in CellIdentityWcdma 46 mLac = Integer.MAX_VALUE; in CellIdentityWcdma() 97 mLac = lac; in CellIdentityWcdma() 104 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma() 134 return mLac; in getLac() 176 return Objects.hash(mLac, mCid, mPsc, super.hashCode()); in hashCode() 203 return mLac == o.mLac in equals() 215 .append(":{ mLac=").append(mLac) in toString() 231 dest.writeInt(mLac); in writeToParcel() 240 mLac = in.readInt(); in CellIdentityWcdma()
|
D | CellIdentityGsm.java | 33 private final int mLac; field in CellIdentityGsm 46 mLac = Integer.MAX_VALUE; in CellIdentityGsm() 96 mLac = lac; in CellIdentityGsm() 105 this(cid.mLac, cid.mCid, cid.mArfcn, cid.mBsic, cid.mMccStr, in CellIdentityGsm() 135 return mLac; in getLac() 199 return Objects.hash(mLac, mCid, super.hashCode()); in hashCode() 213 return mLac == o.mLac in equals() 225 .append(":{ mLac=").append(mLac) in toString() 241 dest.writeInt(mLac); in writeToParcel() 250 mLac = in.readInt(); in CellIdentityGsm()
|
/frameworks/base/config/ |
D | hiddenapi-light-greylist.txt | 5360 Landroid/telephony/NeighboringCellInfo;->mLac:I
|