Searched refs:wl_signal_get (Results 1 – 4 of 4) sorted by relevance
/external/wayland/tests/ |
D | signal-test.c | 69 assert(wl_signal_get(&signal, signal_notify) == &l4); in TEST() 70 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST() 71 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x2) == &l2); in TEST() 72 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x1) == &l1); in TEST() 75 assert(wl_signal_get(&signal, signal_notify) == &l4); in TEST() 76 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST() 77 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x2) == &l2); in TEST() 78 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x1) == &l1); in TEST()
|
/external/wayland/src/ |
D | wayland-server.c | 726 return wl_signal_get(&resource->destroy_signal, notify); in wl_resource_get_destroy_listener() 752 return wl_signal_get(&client->destroy_signal, notify); in wl_client_get_destroy_listener() 1437 return wl_signal_get(&display->destroy_signal, notify); in wl_display_get_destroy_listener()
|
D | wayland-server-core.h | 333 wl_signal_get(struct wl_signal *signal, wl_notify_func_t notify) in wl_signal_get() function
|
D | event-loop.c | 454 return wl_signal_get(&loop->destroy_signal, notify); in wl_event_loop_get_destroy_listener()
|