Home
last modified time | relevance | path

Searched refs:ccid (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/linux/net/dccp/
H A Dccid.h56 int (*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
57 int (*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
96 struct ccid { struct
101 static inline void *ccid_priv(const struct ccid *ccid) in ccid_priv() argument
115 struct ccid *ccid = dp->dccps_hc_rx_ccid; in ccid_get_current_rx_ccid() local
117 if (ccid == NULL || ccid->ccid_ops == NULL) in ccid_get_current_rx_ccid()
124 struct ccid *ccid = dp->dccps_hc_tx_ccid; in ccid_get_current_tx_ccid() local
126 if (ccid == NULL || ccid->ccid_ops == NULL) in ccid_get_current_tx_ccid()
131 void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk);
202 if (!ccid || !ccid->ccid_ops->ccid_hc_tx_parse_options) in ccid_hc_tx_parse_options()
[all …]
H A Dccid.c143 struct ccid *ccid = NULL; in ccid_new() local
150 if (ccid == NULL) in ccid_new()
156 ccid->ccid_ops->ccid_hc_rx_init(ccid, sk) != 0) in ccid_new()
161 ccid->ccid_ops->ccid_hc_tx_init(ccid, sk) != 0) in ccid_new()
165 return ccid; in ccid_new()
169 ccid = NULL; in ccid_new()
173 void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk) in ccid_hc_rx_delete() argument
175 if (ccid != NULL) { in ccid_hc_rx_delete()
178 kmem_cache_free(ccid->ccid_ops->ccid_hc_rx_slab, ccid); in ccid_hc_rx_delete()
182 void ccid_hc_tx_delete(struct ccid *ccid, struct sock *sk) in ccid_hc_tx_delete() argument
[all …]
H A Dfeat.c36 static int dccp_hdlr_ccid(struct sock *sk, u64 ccid, bool rx) in dccp_hdlr_ccid() argument
39 struct ccid *new_ccid = ccid_new(ccid, sk, rx); in dccp_hdlr_ccid()
842 static const struct ccid_dependency *dccp_feat_ccid_deps(u8 ccid, bool is_local) in dccp_feat_ccid_deps() argument
928 switch (ccid) { in dccp_feat_ccid_deps()
1008 u8 is_local, ccid; in dccp_feat_server_ccid_dependencies() local
1014 ccid = entry->val.sp.vec[0]; in dccp_feat_server_ccid_dependencies()
1016 ccid = dccp_feat_default_value(DCCPF_CCID); in dccp_feat_server_ccid_dependencies()
1018 if (dccp_feat_propagate_ccid(fn, ccid, is_local)) in dccp_feat_server_ccid_dependencies()
H A DMakefile4 dccp-y := ccid.o feat.o input.o minisocks.o options.o output.o proto.o timer.o \
H A Doutput.c154 const struct ccid *tx_ccid = dp->dccps_hc_tx_ccid; in dccp_determine_ccmps()
/openbmc/qemu/docs/system/devices/
H A Dccid.rst44 Using ccid-card-emulated with hardware
49 qemu -usb -device usb-ccid -device ccid-card-emulated
51 Using ccid-card-emulated with certificates stored in files
68 …qemu -usb -device usb-ccid -device ccid-card-emulated,backend=certificates,db=sql:$PWD,cert1=id-ce…
99 Using ccid-card-passthru with client side hardware
103 qemu -chardev socket,server=on,host=0.0.0.0,port=2001,id=ccid,wait=off \
104 -usb -device usb-ccid -device ccid-card-passthru,chardev=ccid
110 Using ccid-card-passthru with client side certificates
121 -usb -device usb-ccid -device ccid-card-passthru,chardev=ccid
129 usb-ccid expects a chardev and expects the protocol defined in
[all …]
H A Dusb.rst203 ``usb-ccid``
/openbmc/linux/drivers/nfc/pn533/
H A Dusb.c268 struct pn533_acr122_ccid_hdr ccid; member
275 struct pn533_acr122_ccid_hdr ccid; member
285 frame->ccid.datalen = sizeof(frame->apdu) + 1; in pn533_acr122_tx_frame_init()
286 frame->ccid.slot = 0; in pn533_acr122_tx_frame_init()
287 frame->ccid.seq = 0; in pn533_acr122_tx_frame_init()
288 frame->ccid.params[0] = 0; in pn533_acr122_tx_frame_init()
289 frame->ccid.params[1] = 0; in pn533_acr122_tx_frame_init()
290 frame->ccid.params[2] = 0; in pn533_acr122_tx_frame_init()
306 frame->ccid.datalen += frame->datalen; in pn533_acr122_tx_frame_finish()
320 if (frame->ccid.type != 0x83) in pn533_acr122_is_rx_frame_valid()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ccid/
H A Dccid_1.5.5.bb2 HOMEPAGE = "https://ccid.apdu.fr/"
9 SRC_URI = "https://ccid.apdu.fr/files/ccid-${PV}.tar.bz2 \
/openbmc/linux/drivers/gpu/drm/i915/gt/
H A Dintel_execlists_submission.c495 ce->lrc.ccid = ce->tag; in __execlists_schedule_in()
517 ce->lrc.ccid |= engine->execlists.ccid; in __execlists_schedule_in()
593 unsigned int ccid; in __execlists_schedule_out() local
615 ccid = ce->lrc.ccid; in __execlists_schedule_out()
625 GEM_BUG_ON(ccid == 0); in __execlists_schedule_out()
745 rq->context->lrc.ccid, in dump_port()
786 u32 ccid = -1; in assert_pending_valid() local
822 if (ccid == ce->lrc.ccid) { in assert_pending_valid()
829 ccid = ce->lrc.ccid; in assert_pending_valid()
2302 if (rq->context->lrc.ccid == ccid) { in active_context()
[all …]
H A Dintel_context_types.h140 u32 ccid; member
H A Dintel_engine_types.h190 u32 ccid; member
H A Dintel_engine_cs.c2187 rq->context->lrc.ccid, in intel_engine_print_registers()
2201 rq->context->lrc.ccid, in intel_engine_print_registers()
/openbmc/linux/include/linux/
H A Ddccp.h190 struct ccid;
294 struct ccid *dccps_hc_rx_ccid;
295 struct ccid *dccps_hc_tx_ccid;
/openbmc/linux/net/dccp/ccids/
H A Dccid3.c494 static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk) in ccid3_hc_tx_init() argument
496 struct ccid3_hc_tx_sock *hc = ccid_priv(ccid); in ccid3_hc_tx_init()
791 static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk) in ccid3_hc_rx_init() argument
793 struct ccid3_hc_rx_sock *hc = ccid_priv(ccid); in ccid3_hc_rx_init()
H A Dccid2.c718 static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk) in ccid2_hc_tx_init() argument
720 struct ccid2_hc_tx_sock *hc = ccid_priv(ccid); in ccid2_hc_tx_init()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/openct/openct/
H A Detc-openct.udev.in-disablePROGRAM.patch27 # ccid
/openbmc/qemu/hw/usb/
H A Dmeson.build58 if_true: [cacard, files('ccid-card-emulated.c', 'ccid-card-passthru.c')])
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pcsc-lite/
H A Dpcsc-lite_2.0.3.bb35 RRECOMMENDS:${PN} = "ccid"
/openbmc/openbmc/poky/meta/recipes-support/gnupg/
H A Dgnupg_2.4.5.bb29 --disable-ccid-driver \
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_gpu_error.h71 u32 ccid; member
H A Di915_gpu_error.c536 err_printf(m, " CCID: 0x%08x\n", ee->ccid); in error_print_engine()
1257 ee->ccid = ENGINE_READ(engine, CCID); in engine_record_registers()
/openbmc/qemu/docs/system/
H A Ddevice-emulation.rst86 devices/ccid.rst
/openbmc/qemu/docs/
H A Dqdev-device-use.txt20 ccid-bus slot %u
339 * ccid -device usb-ccid
/openbmc/qemu/docs/about/
H A Dremoved-features.rst321 ``-usbdevice ccid`` (removed in 6.0)
325 Use ``-device usb-ccid`` instead.

12