Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 25 of 33) sorted by relevance

12

/aosp14/frameworks/base/telephony/java/android/telephony/
H A DPcoData.java34 public final int cid; field in PcoData
39 public PcoData(int cid, String bearerProto, int pcoId, byte[]contents) { in PcoData() argument
40 this.cid = cid; in PcoData()
47 cid = in.readInt(); in PcoData()
57 out.writeInt(cid); in writeToParcel()
87 return "PcoData(" + cid + ", " + bearerProto + ", " + pcoId + ", contents[" + in toString()
96 return cid == pcoData.cid in equals()
104 int result = Objects.hash(cid, bearerProto, pcoId); in hashCode()
H A DCellIdentityTdscdma.java90 public CellIdentityTdscdma(@Nullable String mcc, @Nullable String mnc, int lac, int cid, in CellIdentityTdscdma() argument
96 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma()
109 private CellIdentityTdscdma(@NonNull CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument
110 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma()
111 cid.mCpid, cid.mUarfcn, cid.mAlphaLong, in CellIdentityTdscdma()
112 cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityTdscdma()
225 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() local
226 cl.setLacAndCid(lac, cid); in asCellLocation()
H A DCellIdentityWcdma.java91 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument
97 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma()
110 private CellIdentityWcdma(@NonNull CellIdentityWcdma cid) { in CellIdentityWcdma() argument
111 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma()
112 cid.mMncStr, cid.mAlphaLong, cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityWcdma()
249 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() local
251 cl.setLacAndCid(lac, cid); in asCellLocation()
H A DCellIdentityGsm.java87 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, @Nullable String mccStr, in CellIdentityGsm() argument
92 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm()
104 private CellIdentityGsm(@NonNull CellIdentityGsm cid) { in CellIdentityGsm() argument
105 this(cid.mLac, cid.mCid, cid.mArfcn, cid.mBsic, cid.mMccStr, in CellIdentityGsm()
106 cid.mMncStr, cid.mAlphaLong, cid.mAlphaShort, cid.mAdditionalPlmns); in CellIdentityGsm()
237 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() local
238 cl.setLacAndCid(lac, cid); in asCellLocation()
H A DCellIdentityLte.java139 private CellIdentityLte(@NonNull CellIdentityLte cid) { in CellIdentityLte() argument
140 this(cid.mCi, cid.mPci, cid.mTac, cid.mEarfcn, cid.mBands, cid.mBandwidth, cid.mMccStr, in CellIdentityLte()
141 cid.mMncStr, cid.mAlphaLong, cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityLte()
303 int cid = mCi != CellInfo.UNAVAILABLE ? mCi : -1; in asCellLocation() local
304 cl.setLacAndCid(tac, cid); in asCellLocation()
H A DCellIdentityCdma.java118 private CellIdentityCdma(@NonNull CellIdentityCdma cid) { in CellIdentityCdma() argument
119 this(cid.mNetworkId, cid.mSystemId, cid.mBasestationId, cid.mLongitude, cid.mLatitude, in CellIdentityCdma()
120 cid.mAlphaLong, cid.mAlphaShort); in CellIdentityCdma()
H A DSmsCbLocation.java73 public SmsCbLocation(@NonNull String plmn, int lac, int cid) { in SmsCbLocation() argument
76 mCid = cid; in SmsCbLocation()
163 public boolean isInLocationArea(@Nullable String plmn, int lac, int cid) { in isInLocationArea() argument
172 if (mCid != -1 && mCid != cid) { in isInLocationArea()
H A DNeighboringCellInfo.java110 public NeighboringCellInfo(int rssi, int cid) { in NeighboringCellInfo() argument
112 mCid = cid; in NeighboringCellInfo()
285 public void setCid(int cid) { in setCid() argument
286 mCid = cid; in setCid()
H A DCellInfoLte.java79 public void setCellIdentity(CellIdentityLte cid) { in setCellIdentity() argument
80 if (DBG) log("setCellIdentity: " + cid); in setCellIdentity()
81 mCellIdentityLte = cid; in setCellIdentity()
H A DCellInfoNr.java74 public void setCellIdentity(CellIdentityNr cid) { in setCellIdentity() argument
75 mCellIdentity = cid; in setCellIdentity()
H A DCellInfoTdscdma.java74 public void setCellIdentity(CellIdentityTdscdma cid) { in setCellIdentity() argument
75 mCellIdentityTdscdma = cid; in setCellIdentity()
H A DCellInfoWcdma.java68 public void setCellIdentity(CellIdentityWcdma cid) { in setCellIdentity() argument
69 mCellIdentityWcdma = cid; in setCellIdentity()
H A DCellInfoCdma.java72 public void setCellIdentity(CellIdentityCdma cid) { in setCellIdentity() argument
73 mCellIdentityCdma = cid; in setCellIdentity()
H A DCellInfoGsm.java70 public void setCellIdentity(CellIdentityGsm cid) { in setCellIdentity() argument
71 mCellIdentityGsm = cid; in setCellIdentity()
H A DSmsCbMessage.java659 int cid; in createFromCursor() local
662 cid = cursor.getInt(cidColumn); in createFromCursor()
664 cid = -1; in createFromCursor()
667 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in createFromCursor()
/aosp14/frameworks/base/telephony/java/android/telephony/data/
H A DDataService.java312 Log.d(TAG, "startHandover: " + cid); in startHandover()
343 Log.d(TAG, "cancelHandover: " + cid); in cancelHandover()
469 public final int cid; field in DataService.DeactivateDataCallRequest
473 this.cid = cid; in DeactivateDataCallRequest()
504 public final int cid; field in DataService.BeginCancelHandoverRequest
506 BeginCancelHandoverRequest(int cid, in BeginCancelHandoverRequest() argument
508 this.cid = cid; in BeginCancelHandoverRequest()
646 serviceProvider.startHandover(bReq.cid, in handleMessage()
653 serviceProvider.cancelHandover(cReq.cid, in handleMessage()
762 public void deactivateDataCall(int slotIndex, int cid, int reason, in deactivateDataCall() argument
[all …]
H A DIDataService.aidl37 void deactivateDataCall(int slotId, int cid, int reason, IDataServiceCallback callback); in deactivateDataCall() argument
45 void startHandover(int slotId, int cid, IDataServiceCallback callback); in startHandover() argument
46 void cancelHandover(int slotId, int cid, IDataServiceCallback callback); in cancelHandover() argument
/aosp14/frameworks/base/media/java/android/media/tv/tuner/filter/
H A DIpCidChangeEvent.java33 private IpCidChangeEvent(int cid) { in IpCidChangeEvent() argument
34 mCid = cid; in IpCidChangeEvent()
/aosp14/frameworks/base/services/core/jni/gnss/
H A DAGnssRil.cpp48 jboolean AGnssRil::setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, in setRefLocation() argument
61 location.cellID.cid = static_cast<long>(cid); in setRefLocation()
124 jboolean AGnssRil_V1_0::setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, in setRefLocation() argument
136 location.cellID.cid = static_cast<uint32_t>(cid); in setRefLocation()
H A DAGnssRil.h41 virtual jboolean setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac,
55 jboolean setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, jint pcid,
72 jboolean setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint, jint,
/aosp14/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java90 public void setLacAndCid(int lac, int cid) { in setLacAndCid() argument
92 mCid = cid; in setLacAndCid()
/aosp14/frameworks/base/telephony/common/com/google/android/mms/pdu/
H A DPduBody.java168 public PduPart getPartByContentId(String cid) { in getPartByContentId() argument
169 return mPartMapByContentId.get(cid); in getPartByContentId()
/aosp14/frameworks/base/services/core/java/com/android/server/location/gnss/
H A DGnssLocationProvider.java1556 long cid = -1; in getCidFromCellIdentity() local
1561 case CellInfo.TYPE_NR: cid = ((CellIdentityNr) id).getNci(); break; in getCidFromCellIdentity()
1565 if (cid == (id.getType() == CellInfo.TYPE_NR in getCidFromCellIdentity()
1567 cid = -1; in getCidFromCellIdentity()
1570 return cid; in getCidFromCellIdentity()
1582 long cid = CellInfo.UNAVAILABLE_LONG; in setRefLocation() local
1587 cid = cig.getCid(); in setRefLocation()
1592 cid = ciw.getCid(); in setRefLocation()
1597 cid = cil.getCi(); in setRefLocation()
1603 cid = cin.getNci(); in setRefLocation()
[all …]
/aosp14/frameworks/base/media/jni/tuner/
H A DFilterClient.cpp101 Result FilterClient::configureIpFilterContextId(int32_t cid) { in configureIpFilterContextId() argument
104 Status s = mTunerFilter->configureIpFilterContextId(cid); in configureIpFilterContextId()
H A DFilterClient.h96 Result configureIpFilterContextId(int32_t cid);

12