Lines Matching refs:CellInfo
66 super(TAG, CellInfo.TYPE_WCDMA, null, null, null, null); in CellIdentityWcdma()
67 mLac = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
68 mCid = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
69 mPsc = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
70 mUarfcn = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
95 super(TAG, CellInfo.TYPE_WCDMA, mccStr, mncStr, alphal, alphas); in CellIdentityWcdma()
118 return new CellIdentityWcdma(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
119 CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, mMccStr, mMncStr, in sanitizeLocationInfo()
134 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
146 return (mMccStr != null) ? Integer.valueOf(mMccStr) : CellInfo.UNAVAILABLE; in getMcc()
156 return (mMncStr != null) ? Integer.valueOf(mMncStr) : CellInfo.UNAVAILABLE; in getMnc()
248 int lac = mLac != CellInfo.UNAVAILABLE ? mLac : -1; in asCellLocation()
249 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation()
250 int psc = mPsc != CellInfo.UNAVAILABLE ? mPsc : -1; in asCellLocation()
299 super.writeToParcel(dest, CellInfo.TYPE_WCDMA); in writeToParcel()
310 super(TAG, CellInfo.TYPE_WCDMA, in); in CellIdentityWcdma()