Searched refs:cookie (Results 126 - 150 of 459) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/dev/athk/ath12k/
H A Ddbring.c21 u32 cookie; local
54 cookie = u32_encode_bits(ar->pdev_idx, DP_RXDMA_BUF_COOKIE_PDEV_ID) |
57 ath12k_hal_rx_buf_addr_info_set(desc, paddr, cookie, 0);
242 u32 cookie; local
300 ath12k_hal_rx_buf_addr_info_get(&desc, &paddr, &cookie, &rbm);
302 buf_id = u32_get_bits(cookie, DP_RXDMA_BUF_COOKIE_BUF_ID);
H A Ddp_mon.h62 u64 cookie; member in struct:dp_mon_packet_info
/freebsd-current/sys/contrib/dev/athk/ath11k/
H A Ddbring.c49 u32 cookie; local
83 cookie = FIELD_PREP(DP_RXDMA_BUF_COOKIE_PDEV_ID, ar->pdev_idx) |
86 ath11k_hal_rx_buf_addr_info_set(desc, paddr, cookie, 0);
277 u32 cookie; local
337 ath11k_hal_rx_buf_addr_info_get(&desc, &paddr, &cookie, &rbm);
339 buf_id = FIELD_GET(DP_RXDMA_BUF_COOKIE_BUF_ID, cookie);
/freebsd-current/crypto/openssl/test/
H A Ddtlsv1listentest.c20 /* Just a ClientHello without a cookie */
46 /* First fragment of a ClientHello without a cookie */
111 /* A ClientHello with a good cookie */
139 /* A fragmented ClientHello with a good cookie */
162 /* A ClientHello with a bad cookie */
190 /* A fragmented ClientHello with the fragment boundary mid cookie */
262 static int cookie_gen(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len) argument
266 for (i = 0; i < COOKIE_LEN; i++, cookie++)
267 *cookie = i;
273 static int cookie_verify(SSL *ssl, const unsigned char *cookie, argument
[all...]
H A Dext_internal_test.c68 EXT_ENTRY(cookie),
/freebsd-current/sys/arm64/vmm/
H A Dvmm_arm64.c819 ptp_release(void **cookie) argument
821 if (*cookie != NULL) {
822 vm_gpa_release(*cookie);
823 *cookie = NULL;
828 ptp_hold(struct vcpu *vcpu, vm_paddr_t ptpphys, size_t len, void **cookie) argument
832 ptp_release(cookie);
833 ptr = vm_gpa_hold(vcpu, ptpphys, len, VM_PROT_RW, cookie);
844 void *cookie; local
972 cookie = NULL;
986 ptep = ptp_hold(hypctx->vcpu, pte_addr, PAGE_SIZE, &cookie);
[all...]
/freebsd-current/sys/amd64/vmm/
H A Dvmm.c108 void *cookie; /* (i) cpu-specific data */ member in struct:vcpu
162 void *cookie; /* (i) cpu-specific data */ member in struct:vm
331 vmmops_vcpu_cleanup(vcpu->cookie);
332 vcpu->cookie = NULL;
364 vcpu->cookie = vmmops_vcpu_init(vcpu->vm->cookie, vcpu, vcpu->vcpuid);
365 vcpu->vlapic = vmmops_vlapic_init(vcpu->cookie);
497 vm->cookie = vmmops_init(vm, vmspace_pmap(vm->vmspace));
676 vmmops_cleanup(vm->cookie);
1161 void **cookie)
1160 _vm_gpa_hold(struct vm *vm, vm_paddr_t gpa, size_t len, int reqprot, void **cookie) argument
1191 vm_gpa_hold(struct vcpu *vcpu, vm_paddr_t gpa, size_t len, int reqprot, void **cookie) argument
1207 vm_gpa_hold_global(struct vm *vm, vm_paddr_t gpa, size_t len, int reqprot, void **cookie) argument
1215 vm_gpa_release(void *cookie) argument
2781 void *hva, *cookie; local
[all...]
/freebsd-current/sys/dev/itwd/
H A Ditwd.c107 itwd_intr(void *cookie) argument
109 device_t dev = cookie;
/freebsd-current/lib/libpmc/
H A Dpmclog.c254 pmclog_get_event(void *cookie, char **data, ssize_t *len, argument
263 ps = (struct pmclog_parse_state *) cookie;
467 pmclog_read(void *cookie, struct pmclog_ev *ev) argument
473 ps = (struct pmclog_parse_state *) cookie;
539 pmclog_feed(void *cookie, char *data, int len) argument
543 ps = (struct pmclog_parse_state *) cookie;
598 pmclog_close(void *cookie) argument
602 ps = (struct pmclog_parse_state *) cookie;
/freebsd-current/sys/dev/pccbb/
H A Dpccbbvar.h38 void *cookie; member in struct:cbb_intrhand
138 void *cookie);
/freebsd-current/contrib/kyua/utils/process/
H A Doperations_test.cpp144 const int cookie = 0x12345678; local
147 if (::write(fd, &cookie, sizeof(cookie)) != sizeof(cookie))
/freebsd-current/contrib/openbsm/bin/auditfilterd/
H A Dauditfilterd_conf.c42 * that state. Currently, the only such API is the cookie API, which allows
493 * APIs to allow modules to query and set their per-instance cookie.
496 audit_filter_getcookie(void *instance, void **cookie) argument
501 *cookie = am->am_cookie;
505 audit_filter_setcookie(void *instance, void *cookie) argument
510 am->am_cookie = cookie;
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Davl.h297 * Used to destroy any remaining nodes in a tree. The cookie argument should
305 * cookie - a "void *" used to save state between calls to avl_destroy_nodes()
310 * void *cookie;
312 * cookie = NULL;
313 * while ((node = avl_destroy_nodes(tree, &cookie)) != NULL)
317 extern void *avl_destroy_nodes(avl_tree_t *tree, void **cookie);
/freebsd-current/tools/test/stress2/misc/
H A Dreaddir.sh131 long dd_seek; /* magic cookie returned by getdirentries */
132 long dd_rewind; /* magic cookie for rewinding */
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Davl.h289 * Used to destroy any remaining nodes in a tree. The cookie argument should
297 * cookie - a "void *" used to save state between calls to avl_destroy_nodes()
302 * void *cookie;
304 * cookie = NULL;
305 * while ((node = avl_destroy_nodes(tree, &cookie)) != NULL)
309 _AVL_H void *avl_destroy_nodes(avl_tree_t *tree, void **cookie);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Drefcount.c96 void *cookie = NULL; local
99 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL)
230 void *cookie = NULL; local
253 else while ((ref = avl_destroy_nodes(&tree, &cookie)) != NULL)
/freebsd-current/sys/dev/ixl/
H A Di40e_adminq.h74 u64 cookie; member in struct:i40e_asq_cmd_details
/freebsd-current/sys/dev/cxgbe/
H A Dt4_smt.c114 struct wrq_cookie cookie; local
132 req = start_wrq_wr(wrq, howmany(sizeof(*req), 16), &cookie);
161 t6req = start_wrq_wr(wrq, howmany(sizeof(*t6req), 16), &cookie);
178 commit_wrq_wr(wrq, req, &cookie);
/freebsd-current/sys/ofed/drivers/infiniband/core/
H A Dib_roce_gid_mgmt.c120 if_t idev, void *cookie)
122 if_t ndev = (if_t )cookie;
130 if_t idev, void *cookie)
212 if_t ndev, void *cookie)
119 roce_gid_match_netdev(struct ib_device *ib_dev, u8 port, if_t idev, void *cookie) argument
129 roce_gid_match_all(struct ib_device *ib_dev, u8 port, if_t idev, void *cookie) argument
211 roce_gid_update_addr_callback(struct ib_device *device, u8 port, if_t ndev, void *cookie) argument
/freebsd-current/usr.bin/mkimg/
H A Dvhd.c67 uint64_t cookie; member in struct:vhd_footer
205 be64enc(&footer->cookie, VHD_FOOTER_COOKIE);
236 uint64_t cookie; member in struct:vhd_dyn_header
293 be64enc(&header.cookie, VHD_HEADER_COOKIE);
/freebsd-current/sys/dev/virtio/
H A Dvirtqueue.h96 int virtqueue_enqueue(struct virtqueue *vq, void *cookie,
/freebsd-current/sys/kern/
H A Duipc_mbuf2.c313 m_tag_alloc(uint32_t cookie, uint16_t type, int len, int wait) argument
323 m_tag_setup(t, cookie, type, len);
375 m_tag_locate(struct mbuf *m, uint32_t cookie, uint16_t type, struct m_tag *t) argument
385 if (p->m_tag_cookie == cookie && p->m_tag_id == type)
H A Dkern_intr.c677 intr_event_describe_handler(struct intr_event *ie, void *cookie, argument
687 if (ih == cookie)
692 panic("handler %p not found in interrupt event %p", cookie, ie);
695 ih = cookie;
732 intr_handler_source(void *cookie) argument
737 ih = (struct intr_handler *)cookie;
848 intr_event_remove_handler(void *cookie) argument
850 struct intr_handler *handler = (struct intr_handler *)cookie;
930 intr_event_suspend_handler(void *cookie) argument
932 struct intr_handler *handler = (struct intr_handler *)cookie;
949 intr_event_resume_handler(void *cookie) argument
1089 swi_sched(void *cookie, int flags) argument
1135 swi_remove(void *cookie) argument
[all...]
/freebsd-current/usr.sbin/rpc.lockd/
H A Dtest.c322 arg.cookie.n_len = 4;
323 arg.cookie.n_bytes = "hello";
338 res_block.cookie.n_bytes = "hello";
339 res_block.cookie.n_len = 5;
/freebsd-current/sys/arm64/include/
H A Dvmm.h123 void *rptr; /* rendezvous cookie */
124 int *sptr; /* suspend cookie */
125 int *iptr; /* reqidle cookie */
160 int prot, void **cookie);
162 int prot, void **cookie);
163 void vm_gpa_release(void *cookie);
256 void *cookie; member in struct:vm_copyinfo

Completed in 513 milliseconds

1234567891011>>