Home
last modified time | relevance | path

Searched refs:mLac (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DSmsCbLocation.java40 private final int mLac; field in SmsCbLocation
50 mLac = -1; in SmsCbLocation()
61 mLac = -1; in SmsCbLocation()
75 mLac = lac; in SmsCbLocation()
85 mLac = in.readInt(); in SmsCbLocation()
103 return mLac; in getLac()
117 hash = hash * 31 + mLac; in hashCode()
131 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid; in equals()
136 return '[' + mPlmn + ',' + mLac + ',' + mCid + ']'; in toString()
149 if (mLac != -1 && mLac != area.mLac) { in isInLocationArea()
[all …]
DNeighboringCellInfo.java68 private int mLac; field in NeighboringCellInfo
94 mLac = UNKNOWN_CID; in NeighboringCellInfo()
122 mLac = info.getCellIdentity().getLac(); in NeighboringCellInfo()
123 if (mLac == Integer.MAX_VALUE) mLac = UNKNOWN_CID; in NeighboringCellInfo()
138 mLac = info.getCellIdentity().getLac(); in NeighboringCellInfo()
139 if (mLac == Integer.MAX_VALUE) mLac = UNKNOWN_CID; in NeighboringCellInfo()
163 mLac = UNKNOWN_CID; in NeighboringCellInfo()
184 mLac = Integer.parseInt(location.substring(0, 4), 16); in NeighboringCellInfo()
198 mLac = UNKNOWN_CID; in NeighboringCellInfo()
209 mLac = in.readInt(); in NeighboringCellInfo()
[all …]
DCellIdentityGsm.java45 private final int mLac; field in CellIdentityGsm
62 mLac = CellInfo.UNAVAILABLE; in CellIdentityGsm()
88 mLac = inRangeOrUnavailable(lac, 0, MAX_LAC); in CellIdentityGsm()
126 this(cid.mLac, cid.mCid, cid.mArfcn, cid.mBsic, cid.mMccStr, in CellIdentityGsm()
148 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
150 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId()
178 return mLac; in getLac()
257 int lac = mLac != CellInfo.UNAVAILABLE ? mLac : -1; in asCellLocation()
266 return Objects.hash(mLac, mCid, mAdditionalPlmns.hashCode(), super.hashCode()); in hashCode()
280 return mLac == o.mLac in equals()
[all …]
DCellIdentityTdscdma.java43 private final int mLac; field in CellIdentityTdscdma
63 mLac = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
93 mLac = inRangeOrUnavailable(lac, 0, MAX_LAC); in CellIdentityTdscdma()
108 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma()
157 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
159 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId()
193 return mLac; in getLac()
247 int lac = mLac != CellInfo.UNAVAILABLE ? mLac : -1; in asCellLocation()
265 return mLac == o.mLac in equals()
276 return Objects.hash(mLac, mCid, mCpid, mUarfcn, in hashCode()
[all …]
DCellIdentityWcdma.java45 private final int mLac; field in CellIdentityWcdma
65 mLac = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
94 mLac = inRangeOrUnavailable(lac, 0, MAX_LAC); in CellIdentityWcdma()
133 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma()
156 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
158 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId()
186 return mLac; in getLac()
232 return Objects.hash(mLac, mCid, mPsc, mAdditionalPlmns.hashCode(), super.hashCode()); in hashCode()
270 int lac = mLac != CellInfo.UNAVAILABLE ? mLac : -1; in asCellLocation()
290 return mLac == o.mLac in equals()
[all …]
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java28 private int mLac; field in GsmCellLocation
36 mLac = -1; in GsmCellLocation()
45 mLac = bundle.getInt("lac", -1); in GsmCellLocation()
54 return mLac; in getLac()
79 mLac = -1; in setStateInvalid()
88 mLac = lac; in setLacAndCid()
103 return mLac ^ mCid; in hashCode()
120 return equalsHandlesNulls(mLac, s.mLac) && equalsHandlesNulls(mCid, s.mCid) in equals()
126 return "["+ mLac + "," + mCid + "," + mPsc + "]"; in toString()
146 m.putInt("lac", mLac); in fillInNotifierBundle()
[all …]
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt67037 Landroid/telephony/CellIdentityGsm;->mLac:I
67063 Landroid/telephony/CellIdentityTdscdma;->mLac:I
67076 Landroid/telephony/CellIdentityWcdma;->mLac:I
67662 Landroid/telephony/gsm/GsmCellLocation;->mLac:I
69269 Landroid/telephony/SmsCbLocation;->mLac:I