Searched refs:hooks_internal (Results 1 – 1 of 1) sorted by relevance
29 hooks_internal_t hooks_internal; in hook_install_locked() local31 bool success = seq_try_load_hooks(&hooks_internal, &hooks[i]); in hook_install_locked()34 if (!hooks_internal.in_use) { in hook_install_locked()35 hooks_internal.hooks = *to_install; in hook_install_locked()36 hooks_internal.in_use = true; in hook_install_locked()37 seq_store_hooks(&hooks[i], &hooks_internal); in hook_install_locked()60 hooks_internal_t hooks_internal; in hook_remove_locked() local61 bool success = seq_try_load_hooks(&hooks_internal, to_remove); in hook_remove_locked()65 assert(hooks_internal.in_use); in hook_remove_locked()66 hooks_internal.in_use = false; in hook_remove_locked()[all …]