Lines Matching refs:he
208 static hook_event_int_t *hook_event_checkdup(hook_event_t *he,
1294 hook_event_add(hook_family_int_t *hfi, hook_event_t *he) in hook_event_add() argument
1300 ASSERT(he != NULL); in hook_event_add()
1301 ASSERT(he->he_name != NULL); in hook_event_add()
1303 new = hook_event_copy(he); in hook_event_add()
1318 hei = hook_event_checkdup(he, hks); in hook_event_add()
1353 hfi->hfi_family.hf_name, NULL, he->he_name, HN_REGISTER); in hook_event_add()
1414 hook_event_remove(hook_family_int_t *hfi, hook_event_t *he) in hook_event_remove() argument
1421 ASSERT(he != NULL); in hook_event_remove()
1436 hei = hook_event_find(hfi, he->he_name); in hook_event_remove()
1480 hfi->hfi_family.hf_name, NULL, he->he_name, HN_UNREGISTER); in hook_event_remove()
1503 hook_event_shutdown(hook_family_int_t *hfi, hook_event_t *he) in hook_event_shutdown() argument
1509 ASSERT(he != NULL); in hook_event_shutdown()
1524 hei = hook_event_find(hfi, he->he_name); in hook_event_shutdown()
1540 hfi->hfi_family.hf_name, NULL, he->he_name, HN_UNREGISTER); in hook_event_shutdown()
1600 hook_event_checkdup(hook_event_t *he, hook_stack_t *hks) in hook_event_checkdup() argument
1605 ASSERT(he != NULL); in hook_event_checkdup()
1610 if (hei->hei_event == he) { in hook_event_checkdup()