Lines Matching defs:hook
7 #include <pulsecore/hook-list.h>
11 pa_log("(func1) hook=%s call=%s slot=%s", hook_data, call_data, slot_data);
18 pa_log("(func2) hook=%s call=%s slot=%s", hook_data, call_data, slot_data);
25 pa_hook hook;
28 pa_hook_init(&hook, (void*) "hook");
30 pa_hook_connect(&hook, PA_HOOK_LATE, (pa_hook_cb_t) func1, (void*) "slot1");
31 slot = pa_hook_connect(&hook, PA_HOOK_NORMAL, (pa_hook_cb_t) func2, (void*) "slot2");
32 pa_hook_connect(&hook, PA_HOOK_NORMAL, (pa_hook_cb_t) func1, (void*) "slot3");
34 pa_hook_fire(&hook, (void*) "call1");
38 pa_hook_fire(&hook, (void*) "call2");
40 pa_hook_done(&hook);