Home
last modified time | relevance | path

Searched refs:hhook_id (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/sys/
H A Dhhook.h75 typedef int (*hhook_func_t)(int32_t hhook_type, int32_t hhook_id, void *udata,
119 int hhook_head_register(int32_t hhook_type, int32_t hhook_id,
124 int hhook_head_deregister_lookup(int32_t hhook_type, int32_t hhook_id);
126 struct hhook_head * hhook_head_get(int32_t hhook_type, int32_t hhook_id);
150 #define HHOOKS_RUN_LOOKUP_IF(hhook_type, hhook_id, ctx_data, hosd) do { \ argument
153 _hhh = hhook_head_get(hhook_type, hhook_id); \
/freebsd/share/examples/kld/khelp/
H A Dh_example.c57 static int example_hook(int hhook_type, int hhook_id, void *udata,
130 example_hook(int hhook_type, int hhook_id, void *udata, void *ctx_data, in example_hook() argument
137 if (hhook_id == HHOOK_TCP_EST_IN) in example_hook()
139 else if (hhook_id == HHOOK_TCP_EST_OUT) in example_hook()
/freebsd/sys/kern/
H A Dkern_hhook.c291 hhook_head_register(int32_t hhook_type, int32_t hhook_id, struct hhook_head **hhh, in hhook_head_register() argument
296 tmphhh = hhook_head_get(hhook_type, hhook_id); in hhook_head_register()
311 tmphhh->hhh_id = hhook_id; in hhook_head_register()
388 hhook_head_deregister_lookup(int32_t hhook_type, int32_t hhook_id) in hhook_head_deregister_lookup() argument
393 hhh = hhook_head_get(hhook_type, hhook_id); in hhook_head_deregister_lookup()
407 hhook_head_get(int32_t hhook_type, int32_t hhook_id) in hhook_head_get() argument
413 if (hhh->hhh_type == hhook_type && hhh->hhh_id == hhook_id) { in hhook_head_get()
/freebsd/sys/netinet/khelp/
H A Dh_ertt.c70 static int ertt_packet_measurement_hook(int hhook_type, int hhook_id,
72 static int ertt_add_tx_segment_info_hook(int hhook_type, int hhook_id,
194 ertt_packet_measurement_hook(int hhook_type, int hhook_id, void *udata, in ertt_packet_measurement_hook() argument
429 ertt_add_tx_segment_info_hook(int hhook_type, int hhook_id, void *udata, in ertt_add_tx_segment_info_hook() argument
/freebsd/sys/net/
H A Dif_enc.c241 enc_hhook(int32_t hhook_type, int32_t hhook_id, void *udata, void *ctx_data, in enc_hhook() argument
257 if (ctx->af != hhook_id) in enc_hhook()
288 switch (hhook_id) { in enc_hhook()