Lines Matching defs:handle
61 static void close_cb(uv_handle_t* handle) {
124 static void on_alloc(uv_handle_t* handle,
150 uv_close((uv_handle_t*) req->handle, close_cb);
176 static void timer_cb(uv_timer_t* handle) {
178 uv_close((uv_handle_t*) handle, close_cb);
182 static void timer_counter_cb(uv_timer_t* handle) {
663 uv_os_sock_t handle;
670 handle = _get_osfhandle(3);
672 handle = 3;
674 r = uv_tcp_open(&tcp, handle);
693 uv_os_fd_t handle;
706 r = uv_fileno((uv_handle_t*) &tcp_server, &handle);
707 fd = _open_osfhandle((intptr_t) handle, 0);