Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/sys/
HDhhook.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-11-stable/share/examples/kld/khelp/
HDh_example.c58 static int example_hook(int hhook_type, int hhook_id, void *udata,
131 example_hook(int hhook_type, int hhook_id, void *udata, void *ctx_data, in example_hook() argument
138 if (hhook_id == HHOOK_TCP_EST_IN) in example_hook()
140 else if (hhook_id == HHOOK_TCP_EST_OUT) in example_hook()
/freebsd-11-stable/sys/kern/
HDkern_hhook.c292 hhook_head_register(int32_t hhook_type, int32_t hhook_id, struct hhook_head **hhh, in hhook_head_register() argument
297 tmphhh = hhook_head_get(hhook_type, hhook_id); in hhook_head_register()
312 tmphhh->hhh_id = hhook_id; in hhook_head_register()
389 hhook_head_deregister_lookup(int32_t hhook_type, int32_t hhook_id) in hhook_head_deregister_lookup() argument
394 hhh = hhook_head_get(hhook_type, hhook_id); in hhook_head_deregister_lookup()
408 hhook_head_get(int32_t hhook_type, int32_t hhook_id) in hhook_head_get() argument
414 if (hhh->hhh_type == hhook_type && hhh->hhh_id == hhook_id) { in hhook_head_get()
/freebsd-11-stable/sys/netinet/khelp/
HDh_ertt.c71 static int ertt_packet_measurement_hook(int hhook_type, int hhook_id,
73 static int ertt_add_tx_segment_info_hook(int hhook_type, int hhook_id,
195 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-11-stable/sys/net/
HDif_enc.c237 enc_hhook(int32_t hhook_type, int32_t hhook_id, void *udata, void *ctx_data, in enc_hhook() argument
253 if (ctx->af != hhook_id) in enc_hhook()
284 switch (hhook_id) { in enc_hhook()