Lines Matching defs:handle
178 static void connection_close_cb(uv_handle_t* handle) {
179 connection_context_t* context = (connection_context_t*) handle->data;
207 static void connection_poll_cb(uv_poll_t* handle, int status, int events) {
208 connection_context_t* context = (connection_context_t*) handle->data;
431 uv_poll_start(handle, new_events, connection_poll_cb);
436 ASSERT_EQ(1, uv_is_active((uv_handle_t*) handle));
438 ASSERT_OK(uv_is_active((uv_handle_t*) handle));
481 static void server_close_cb(uv_handle_t* handle) {
482 server_context_t* context = (server_context_t*) handle->data;
492 static void server_poll_cb(uv_poll_t* handle, int status, int events) {
494 handle->data;