Lines Matching defs:handle
53 static void async_cb(uv_async_t* handle) {
55 handle->data = handle;
59 static void timer_cb(uv_timer_t* handle) {
66 uv_async_t* handle = container->async_handles + i;
68 if (handle->data != NULL)
71 uv_close((uv_handle_t*) handle, NULL);
74 uv_close((uv_handle_t*) handle, NULL);
81 uv_async_t* handle;
95 handle = container->async_handles + i;
96 ASSERT_OK(uv_async_init(loop, handle, async_cb));
97 handle->data = NULL;