Searched refs:hdata (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/sys/sys/
H A Dmodule_khelp.h73 #define KHELP_DECLARE_MOD_UMA(hname, hdata, hhooks, version, size, ctor, dtor) \
76 .helper = hdata, \
91 #define KHELP_DECLARE_MOD(hname, hdata, hhooks, version) \
92 KHELP_DECLARE_MOD_UMA(hname, hdata, hhooks, version, 0, NULL, NULL)
H A Dhhook.h76 void *ctx_data, void *hdata, struct osd *hosd);
/freebsd-11-stable/share/examples/kld/khelp/
H A Dh_example.c59 void *ctx_data, void *hdata, struct osd *hosd);
123 * - hdata is a pointer to the persistent per-object storage for our module. The
132 void *hdata, struct osd *hosd)
136 data = hdata;
131 example_hook(int hhook_type, int hhook_id, void *udata, void *ctx_data, void *hdata, struct osd *hosd) argument
/freebsd-11-stable/contrib/gcc/
H A Dvalue-prof.h59 } hdata; /* Profiled information specific data. */ member in struct:histogram_value_t
H A Dvalue-prof.c649 for (i = 0; i < histogram->hdata.intvl.steps; i++)
663 for (i = 0; i < histogram->hdata.intvl.steps; i++)
669 if (i == histogram->hdata.intvl.steps)
762 hist->hdata.intvl.int_start = 0;
763 hist->hdata.intvl.steps = 2;
807 hist->hdata.intvl.int_start,
808 (hist->hdata.intvl.int_start
809 + hist->hdata.intvl.steps - 1));
811 hist->n_counters = hist->hdata.intvl.steps + 2;
H A Dtree-profile.c143 tree start = build_int_cst_type (integer_type_node, value->hdata.intvl.int_start);
144 tree steps = build_int_cst_type (unsigned_type_node, value->hdata.intvl.steps);
/freebsd-11-stable/sys/kern/
H A Dkern_khelp.c152 void *hdata; local
163 hdata = uma_zalloc(h->h_zone, M_NOWAIT);
164 if (hdata == NULL) {
168 osd_set(OSD_KHELP, hosd, h->h_id, hdata);
212 void *hdata; local
220 hdata = osd_get(OSD_KHELP, hosd, h->h_id);
221 if (hdata != NULL) {
222 uma_zfree(h->h_zone, hdata);
H A Dkern_hhook.c97 void *hdata; local
106 hdata = osd_get(OSD_KHELP, hosd, hhk->hhk_helper->h_id);
107 if (hdata == NULL)
110 hdata = NULL;
122 ctx_data, hdata, hosd);
/freebsd-11-stable/sys/netinet/khelp/
H A Dh_ertt.c72 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
74 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
196 void *ctx_data, void *hdata, struct osd *hosd)
209 KASSERT(hdata != NULL, ("%s: hdata is NULL!", __func__));
211 e_t = (struct ertt *)hdata;
430 void *ctx_data, void *hdata, struct osd *hosd)
442 KASSERT(hdata != NULL, ("%s: hdata is NULL!", __func__));
444 e_t = (struct ertt *)hdata;
195 ertt_packet_measurement_hook(int hhook_type, int hhook_id, void *udata, void *ctx_data, void *hdata, struct osd *hosd) argument
429 ertt_add_tx_segment_info_hook(int hhook_type, int hhook_id, void *udata, void *ctx_data, void *hdata, struct osd *hosd) argument
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_vlan.c63 #define IS_HOOK_VLAN_SET(hdata) \
64 ((((uintptr_t)hdata) & HOOK_VLAN_TAG_SET_MASK) == HOOK_VLAN_TAG_SET_MASK)
/freebsd-11-stable/crypto/openssl/ssl/
H A Ds3_enc.c622 void *hdata; local
633 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
654 || !EVP_DigestUpdate(s->s3->handshake_dgst[i], hdata,
H A Ds3_srvr.c3121 void *hdata; local
3122 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3133 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen)) {
H A Ds3_clnt.c3284 void *hdata; local
3286 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3297 || !EVP_SignUpdate(&mctx, hdata, hdatalen)
/freebsd-11-stable/sys/net/
H A Dif_enc.c238 void *hdata, struct osd *hosd)
237 enc_hhook(int32_t hhook_type, int32_t hhook_id, void *udata, void *ctx_data, void *hdata, struct osd *hosd) argument
H A Dif_var.h156 * hdata: pointer to L3 header (optional, used for ARP requests).
161 * hdata: L3 header may be altered if necessary
173 char *hdata; /* Upper layer header data (rw) */ member in struct:if_encap_req
H A Dif_ethersubr.c174 ah = (struct arphdr *)req->hdata;
/freebsd-11-stable/sys/netinet/
H A Dif_ether.c325 ereq.hdata = (u_char *)ah;

Completed in 146 milliseconds