Lines Matching refs:uv_handle_t
36 static void on_client_alloc(uv_handle_t* handle,
44 static void on_close(uv_handle_t* handle);
58 static void on_client_alloc(uv_handle_t* handle, in on_client_alloc()
78 uv_close((uv_handle_t*) &client, on_close); in on_client_timeout()
79 uv_close((uv_handle_t*) &timer, on_close); in on_client_timeout()
83 static void on_connection_alloc(uv_handle_t* handle, in on_connection_alloc()
97 uv_close((uv_handle_t*) stream, on_close); in on_connection_read()
114 static void on_close(uv_handle_t* handle) { in on_close()
115 ASSERT_NE(handle == (uv_handle_t*) &client || in on_close()
116 handle == (uv_handle_t*) &connection || in on_close()
117 handle == (uv_handle_t*) &timer, 0); in on_close()
137 uv_unref((uv_handle_t*) handle); in start_server()