Home
last modified time | relevance | path

Searched refs:cookies (Results 1 – 23 of 23) sorted by relevance

/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_ipsec_pxy.c365 u_32_t cookies[4]; local
371 if ((fin->fin_dlen < sizeof(cookies)) || (fin->fin_flx & FI_FRAG))
377 COPYDATA(m, off, sizeof(cookies), (char *)cookies);
379 if ((cookies[0] != ipsec->ipsc_icookie[0]) ||
380 (cookies[1] != ipsec->ipsc_icookie[1]))
384 if ((cookies[2]|cookies[3]) == 0) {
388 ipsec->ipsc_rcookie[0] = cookies[2];
389 ipsec->ipsc_rcookie[1] = cookies[3];
393 if ((cookies[2] != ipsec->ipsc_rcookie[0]) ||
394 (cookies[3] != ipsec->ipsc_rcookie[1]))
/f-stack/tools/libnetgraph/
H A Ddebug.c134 static const struct ng_cookie cookies[] = { variable
312 for (k = 0; cookies[k].cookie != 0; k++) { in NgCookie()
313 if (cookies[k].cookie == cookie) in NgCookie()
314 return cookies[k].type; in NgCookie()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_userid_filter_module.c294 ngx_table_elt_t **cookies; in ngx_http_userid_get_uid() local
312 n = ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &conf->name, in ngx_http_userid_get_uid()
322 cookies = r->headers_in.cookies.elts; in ngx_http_userid_get_uid()
325 &cookies[n]->value); in ngx_http_userid_get_uid()
343 cookies = r->headers_in.cookies.elts; in ngx_http_userid_get_uid()
346 &cookies[n]->value); in ngx_http_userid_get_uid()
/f-stack/freebsd/x86/iommu/
H A Diommu_intrmap.h35 int iommu_alloc_msi_intr(device_t src, u_int *cookies, u_int count);
H A Dintel_intrmap.c71 iommu_alloc_msi_intr(device_t src, u_int *cookies, u_int count) in iommu_alloc_msi_intr() argument
81 cookies[i] = -1; in iommu_alloc_msi_intr()
94 cookies[i] = idx + i; in iommu_alloc_msi_intr()
/f-stack/freebsd/contrib/ngatm/netnatm/api/
H A Dcc_port.c95 TAILQ_INIT(&port->cookies); in cc_port_create()
122 while ((r = TAILQ_FIRST(&port->cookies)) != NULL) { in cc_port_destroy()
123 TAILQ_REMOVE(&port->cookies, r, link); in cc_port_destroy()
495 TAILQ_FOREACH(r, &port->cookies, link) in find_cookie()
522 TAILQ_REMOVE(&port->cookies, req, link); in cc_uni_response()
H A Dcc_sig.c161 TAILQ_FOREACH(r, &conn->port->cookies, link) in sig_conn()
H A Dcc_dump.c277 TAILQ_FOREACH(r, &p->cookies, link) in cc_dump_port()
H A Dccpriv.h129 struct ccreq_list cookies; member
H A Dcc_conn.c151 TAILQ_INSERT_TAIL(&conn->port->cookies, r, link); in cc_send_uni()
287 TAILQ_FOREACH_SAFE(r, &conn->port->cookies, link, r1) { in cc_conn_flush_cookies()
289 TAILQ_REMOVE(&conn->port->cookies, r, link); in cc_conn_flush_cookies()
/f-stack/dpdk/drivers/net/virtio/
H A Dvirtio_rxtx.c252 struct rte_mbuf **cookies, in virtqueue_enqueue_refill_inorder() argument
271 dxp->cookie = (void *)cookies[i]; in virtqueue_enqueue_refill_inorder()
275 VIRTIO_MBUF_ADDR(cookies[i], vq) + in virtqueue_enqueue_refill_inorder()
278 cookies[i]->buf_len - in virtqueue_enqueue_refill_inorder()
428 struct rte_mbuf **cookies, in virtqueue_enqueue_xmit_inorder() argument
445 dxp->cookie = (void *)cookies[i]; in virtqueue_enqueue_xmit_inorder()
447 virtio_update_packet_stats(&txvq->stats, cookies[i]); in virtqueue_enqueue_xmit_inorder()
449 hdr = rte_pktmbuf_mtod_offset(cookies[i], in virtqueue_enqueue_xmit_inorder()
456 virtqueue_xmit_offload(hdr, cookies[i], true); in virtqueue_enqueue_xmit_inorder()
459 VIRTIO_MBUF_DATA_DMA_ADDR(cookies[i], vq) - head_size; in virtqueue_enqueue_xmit_inorder()
[all …]
/f-stack/freebsd/x86/x86/
H A Dmsi.c388 u_int cookies[count]; in msi_alloc() local
455 error = iommu_alloc_msi_intr(dev, cookies, count); in msi_alloc()
467 msi->msi_remap_cookie = cookies[i]; in msi_alloc()
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.c3652 ngx_array_t *cookies; in ngx_http_v2_cookie() local
3654 cookies = r->stream->cookies; in ngx_http_v2_cookie()
3656 if (cookies == NULL) { in ngx_http_v2_cookie()
3658 if (cookies == NULL) { in ngx_http_v2_cookie()
3662 r->stream->cookies = cookies; in ngx_http_v2_cookie()
3665 val = ngx_array_push(cookies); in ngx_http_v2_cookie()
3684 ngx_array_t *cookies; in ngx_http_v2_construct_cookie_header() local
3691 cookies = r->stream->cookies; in ngx_http_v2_construct_cookie_header()
3693 if (cookies == NULL) { in ngx_http_v2_construct_cookie_header()
3697 vals = cookies->elts; in ngx_http_v2_construct_cookie_header()
[all …]
H A Dngx_http_v2.h204 ngx_array_t *cookies; member
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_upstream.h289 ngx_array_t cookies; member
H A Dngx_http_request.h236 ngx_array_t cookies; member
H A Dngx_http_variables.c184 offsetof(ngx_http_request_t, headers_in.cookies), 0, 0 },
1064 if (ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &s, &cookie) in ngx_http_variable_cookie()
H A Dngx_http_upstream.c250 offsetof(ngx_http_upstream_headers_in_t, cookies),
4529 pa = &u->headers_in.cookies; in ngx_http_upstream_process_set_cookie()
5597 if (ngx_http_parse_set_cookie_lines(&r->upstream->headers_in.cookies, in ngx_http_upstream_cookie_variable()
H A Dngx_http_request.c199 { ngx_string("Cookie"), offsetof(ngx_http_headers_in_t, cookies),
/f-stack/dpdk/doc/guides/prog_guide/
H A Dmempool_lib.rst20 In debug mode, cookies are added at the beginning and end of allocated blocks.
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_vnops_os.c1653 int *ncookies, ulong_t **cookies) in zfs_readdir() argument
1753 *cookies = cooks; in zfs_readdir()
1953 if (error != 0 && cookies != NULL) { in zfs_readdir()
1954 free(*cookies, M_TEMP); in zfs_readdir()
1955 *cookies = NULL; in zfs_readdir()
/f-stack/app/nginx-1.16.1/src/http/modules/perl/
H A Dnginx.xs263 if (hh->offset == offsetof(ngx_http_headers_in_t, cookies)) {
/f-stack/freebsd/kern/
H A Dvnode_if.src394 INOUT u_long **cookies;