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

/freebsd-10.0-release/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.h73 void *ctx_data, void *hdata, struct osd *hosd);
/freebsd-10.0-release/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-10.0-release/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-10.0-release/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
105 hdata = osd_get(OSD_KHELP, hosd, hhk->hhk_helper->h_id);
106 if (hdata == NULL)
109 hdata = NULL;
121 ctx_data, hdata, hosd);
/freebsd-10.0-release/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-10.0-release/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-10.0-release/crypto/openssl/ssl/
H A Ds3_enc.c595 void *hdata; local
601 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer,&hdata);
622 EVP_DigestUpdate(s->s3->handshake_dgst[i],hdata,hdatalen);
H A Ds3_clnt.c3113 void *hdata; local
3116 &hdata);
3129 || !EVP_SignUpdate(&mctx, hdata, hdatalen)
H A Ds3_srvr.c3110 void *hdata; local
3111 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3123 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen))

Completed in 109 milliseconds