Searched refs:hki (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/sys/sys/
H A Dkhelp.h72 int khelp_add_hhook(struct hookinfo *hki, uint32_t flags);
74 int khelp_remove_hhook(struct hookinfo *hki);
H A Dhhook.h107 int hhook_add_hook(struct hhook_head *hhh, struct hookinfo *hki,
110 int hhook_add_hook_lookup(struct hookinfo *hki, uint32_t flags);
112 int hhook_remove_hook(struct hhook_head *hhh, struct hookinfo *hki);
114 int hhook_remove_hook_lookup(struct hookinfo *hki);
/freebsd-10.0-release/sys/kern/
H A Dkern_hhook.c130 hhook_add_hook(struct hhook_head *hhh, struct hookinfo *hki, uint32_t flags) argument
146 hhk->hhk_helper = hki->hook_helper;
147 hhk->hhk_func = hki->hook_func;
148 hhk->hhk_udata = hki->hook_udata;
152 if (tmp->hhk_func == hki->hook_func &&
153 tmp->hhk_udata == hki->hook_udata) {
187 hhook_add_hook_lookup(struct hookinfo *hki, uint32_t flags) argument
207 if (hhh->hhh_type == hki->hook_type &&
208 hhh->hhh_id == hki->hook_id) {
232 error = hhook_add_hook(heads_to_hook[i], hki, flag
245 hhook_remove_hook(struct hhook_head *hhh, struct hookinfo *hki) argument
272 hhook_remove_hook_lookup(struct hookinfo *hki) argument
[all...]
H A Dkern_khelp.c257 khelp_add_hhook(struct hookinfo *hki, uint32_t flags) argument
265 error = hhook_add_hook_lookup(hki, flags);
271 khelp_remove_hhook(struct hookinfo *hki) argument
279 error = hhook_remove_hook_lookup(hki);

Completed in 112 milliseconds