Lines Matching refs:cid

89     public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr,  in CellIdentityWcdma()  argument
95 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma()
109 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_0.CellIdentityWcdma cid) { in CellIdentityWcdma() argument
110 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", "", in CellIdentityWcdma()
115 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_2.CellIdentityWcdma cid) { in CellIdentityWcdma() argument
116 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma()
117 cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityWcdma()
118 cid.operatorNames.alphaShort, new ArraySet<>(), null); in CellIdentityWcdma()
122 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_5.CellIdentityWcdma cid) { in CellIdentityWcdma() argument
123 this(cid.base.base.lac, cid.base.base.cid, cid.base.base.psc, cid.base.base.uarfcn, in CellIdentityWcdma()
124 cid.base.base.mcc, cid.base.base.mnc, cid.base.operatorNames.alphaLong, in CellIdentityWcdma()
125 cid.base.operatorNames.alphaShort, cid.additionalPlmns, in CellIdentityWcdma()
126 cid.optionalCsgInfo.getDiscriminator() in CellIdentityWcdma()
128 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityWcdma()
132 private CellIdentityWcdma(@NonNull CellIdentityWcdma cid) { in CellIdentityWcdma() argument
133 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma()
134 cid.mMncStr, cid.mAlphaLong, cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityWcdma()
271 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() local
273 cl.setLacAndCid(lac, cid); in asCellLocation()