Lines Matching refs:he
209 static hook_event_int_t *hook_event_checkdup(hook_event_t *he,
1310 hook_event_add(hook_family_int_t *hfi, hook_event_t *he) in hook_event_add() argument
1316 ASSERT(he != NULL); in hook_event_add()
1317 ASSERT(he->he_name != NULL); in hook_event_add()
1319 new = hook_event_copy(he); in hook_event_add()
1334 hei = hook_event_checkdup(he, hks); in hook_event_add()
1369 hfi->hfi_family.hf_name, NULL, he->he_name, HN_REGISTER); in hook_event_add()
1430 hook_event_remove(hook_family_int_t *hfi, hook_event_t *he) in hook_event_remove() argument
1437 ASSERT(he != NULL); in hook_event_remove()
1452 hei = hook_event_find(hfi, he->he_name); in hook_event_remove()
1496 hfi->hfi_family.hf_name, NULL, he->he_name, HN_UNREGISTER); in hook_event_remove()
1519 hook_event_shutdown(hook_family_int_t *hfi, hook_event_t *he) in hook_event_shutdown() argument
1525 ASSERT(he != NULL); in hook_event_shutdown()
1540 hei = hook_event_find(hfi, he->he_name); in hook_event_shutdown()
1556 hfi->hfi_family.hf_name, NULL, he->he_name, HN_UNREGISTER); in hook_event_shutdown()
1616 hook_event_checkdup(hook_event_t *he, hook_stack_t *hks) in hook_event_checkdup() argument
1621 ASSERT(he != NULL); in hook_event_checkdup()
1626 if (hei->hei_event == he) { in hook_event_checkdup()