Home
last modified time | relevance | path

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

1234

/frameworks/base/telephony/java/android/telephony/
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()
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()
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()
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()
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()
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()
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()
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()
DCellInfoLte.java79 public void setCellIdentity(CellIdentityLte cid) { in setCellIdentity() argument
80 if (DBG) log("setCellIdentity: " + cid); in setCellIdentity()
81 mCellIdentityLte = cid; in setCellIdentity()
DCellInfoNr.java74 public void setCellIdentity(CellIdentityNr cid) { in setCellIdentity() argument
75 mCellIdentity = cid; in setCellIdentity()
/frameworks/base/telephony/java/android/telephony/data/
DDataService.java246 public void deactivateDataCall(int cid, @DeactivateDataReason int reason, in deactivateDataCall() argument
309 public void startHandover(int cid, @NonNull DataServiceCallback callback) { in startHandover() argument
312 Log.d(TAG, "startHandover: " + cid); in startHandover()
340 public void cancelHandover(int cid, @NonNull DataServiceCallback callback) { in cancelHandover() argument
343 Log.d(TAG, "cancelHandover: " + cid); in cancelHandover()
469 public final int cid; field in DataService.DeactivateDataCallRequest
472 DeactivateDataCallRequest(int cid, int reason, IDataServiceCallback callback) { in DeactivateDataCallRequest() argument
473 this.cid = cid; in DeactivateDataCallRequest()
504 public final int cid; field in DataService.BeginCancelHandoverRequest
506 BeginCancelHandoverRequest(int cid, in BeginCancelHandoverRequest() argument
[all …]
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
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DEventLogTags.logtags22 50105 pdp_setup_fail (cause|1|5), (cid|1|5), (network_type|1|5)
25 50106 call_drop (cause|1|5), (cid|1|5), (network_type|1|5)
28 50107 data_network_registration_fail (op_numeric|1|5), (cid|1|5)
34 50109 pdp_network_drop (cid|1|5), (network_type|1|5)
37 50110 cdma_data_setup_failed (cause|1|5), (cid|1|5), (network_type|1|5)
40 50111 cdma_data_drop (cid|1|5), (network_type|1|5)
46 50112 gsm_rat_switched (cid|1|5), (network_from|1|5), (network_to|1|5)
81 50123 gsm_rat_switched_new (cid|1|5), (network_from|1|5), (network_to|1|5)
DRILUtils.java2773 return new CellIdentityGsm(ci.lac, ci.cid, ci.arfcn, in convertHalCellIdentityGsm()
2779 return new CellIdentityGsm(ci.base.lac, ci.base.cid, ci.base.arfcn, in convertHalCellIdentityGsm()
2786 return new CellIdentityGsm(ci.base.base.lac, ci.base.base.cid, ci.base.base.arfcn, in convertHalCellIdentityGsm()
2802 android.hardware.radio.network.CellIdentityGsm cid) { in convertHalCellIdentityGsm() argument
2803 return new CellIdentityGsm(cid.lac, cid.cid, cid.arfcn, in convertHalCellIdentityGsm()
2804 cid.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.bsic, cid.mcc, cid.mnc, in convertHalCellIdentityGsm()
2805 cid.operatorNames.alphaLong, cid.operatorNames.alphaShort, new ArraySet<>()); in convertHalCellIdentityGsm()
2837 android.hardware.radio.network.CellIdentityCdma cid) { in convertHalCellIdentityCdma() argument
2838 return new CellIdentityCdma(cid.networkId, cid.systemId, cid.baseStationId, cid.longitude, in convertHalCellIdentityCdma()
2839 cid.latitude, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in convertHalCellIdentityCdma()
[all …]
/frameworks/native/libs/binder/
Dlibbinder_rpc_unstable.cpp78 ARpcServer* ARpcServer_newVsock(AIBinder* service, unsigned int cid, unsigned int port) { in ARpcServer_newVsock() argument
82 if (cid == VMADDR_CID_LOCAL) { in ARpcServer_newVsock()
84 cid = VMADDR_CID_ANY; // no need for a connection filter in ARpcServer_newVsock()
92 if (cid != VMADDR_CID_ANY) { in ARpcServer_newVsock()
97 if (cid != vaddr->svm_cid) { in ARpcServer_newVsock()
198 AIBinder* ARpcSession_setupVsockClient(ARpcSession* handle, unsigned int cid, unsigned int port) { in ARpcSession_setupVsockClient() argument
200 if (status_t status = session->setupVsockClient(cid, port); status != OK) { in ARpcSession_setupVsockClient()
201 LOG(ERROR) << "Failed to set up vsock client with CID " << cid << " and port " << port in ARpcSession_setupVsockClient()
/frameworks/base/media/java/android/media/tv/tuner/filter/
DIpCidChangeEvent.java33 private IpCidChangeEvent(int cid) { in IpCidChangeEvent() argument
34 mCid = cid; in IpCidChangeEvent()
/frameworks/base/services/core/jni/gnss/
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()
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,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DCellularDataService.java186 public void deactivateDataCall(int cid, int reason, DataServiceCallback callback) { in deactivateDataCall() argument
197 mPhone.mCi.deactivateDataCall(cid, reason, message); in deactivateDataCall()
247 public void startHandover(int cid, DataServiceCallback callback) { in startHandover() argument
256 mPhone.mCi.startHandover(message, cid); in startHandover()
260 public void cancelHandover(int cid, DataServiceCallback callback) { in cancelHandover() argument
268 mPhone.mCi.cancelHandover(message, cid); in cancelHandover()
/frameworks/native/libs/binder/include_rpc_unstable/
Dbinder_rpc_unstable.hpp40 [[nodiscard]] ARpcServer* ARpcServer_newVsock(AIBinder* service, unsigned int cid,
97 AIBinder* ARpcSession_setupVsockClient(ARpcSession* session, unsigned int cid,
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DDisplayInfoControllerTest.java145 CellIdentityLte cid = in changeRegState() local
155 state, dataRat, 0, false, null, cid, getPlmnFromCellIdentity(cid), 1, false, false, in changeRegState()
172 state, voiceRat, 0, false, null, cid, getPlmnFromCellIdentity(cid), false, 0, 0, 0); in changeRegState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DCarrierIdMatchStats.java35 int cid, String mccMnc, String gid1, String spn, String pnn) { in onCarrierIdMismatch() argument
48 TelephonyStatsLog.write(CARRIER_ID_MISMATCH_REPORTED, cid, mccMnc, gid1, spn, pnn); in onCarrierIdMismatch()
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java90 public void setLacAndCid(int lac, int cid) { in setLacAndCid() argument
92 mCid = cid; in setLacAndCid()
/frameworks/native/libs/vr/libpdx/
Dservice.cpp58 svc->name_.c_str(), info_.op, info_.pid, info_.cid); in Destroy()
365 return svc->endpoint()->ModifyChannelEvents(info_.cid, clear_mask, in ModifyChannelEvents()
413 int Message::GetChannelId() const { return info_.cid; } in GetChannelId()
433 status = svc->SetChannel(info_.cid, chan); in SetChannel()
585 info.cid); in HandleSystemMessage()
592 info.cid); in HandleSystemMessage()
600 info.pid, info.cid); in HandleSystemMessage()
607 info.cid); in HandleSystemMessage()
629 info.pid, info.cid, info.op); in DefaultHandleMessage()
/frameworks/native/libs/binder/rust/rpcbinder/src/
Dserver.rs47 pub fn new_vsock(mut service: SpIBinder, cid: u32, port: u32) -> Result<RpcServer, Error> { in new_vsock()
54 service, cid, port, in new_vsock()

1234