Lines Matching refs:read_req
134 handle->read_req.data = handle; in uv__pipe_connection_init()
675 assert(handle->read_req.wait_handle == INVALID_HANDLE_VALUE); in uv__pipe_endgame()
676 if (handle->read_req.event_handle != NULL) { in uv__pipe_endgame()
677 CloseHandle(handle->read_req.event_handle); in uv__pipe_endgame()
678 handle->read_req.event_handle = NULL; in uv__pipe_endgame()
1012 r = CancelIoEx(handle->handle, &handle->read_req.u.io.overlapped); in uv__pipe_interrupt_read()
1388 req = &handle->read_req; in uv__pipe_queue_read()
1453 if (handle->read_req.event_handle == NULL) { in uv__pipe_read_start()
1454 handle->read_req.event_handle = CreateEvent(NULL, 0, 0, NULL); in uv__pipe_read_start()
1455 if (handle->read_req.event_handle == NULL) { in uv__pipe_read_start()
1928 req = &handle->read_req; in uv__pipe_read_exactly()
1997 req = &handle->read_req; in uv__pipe_read_data()
2128 if (handle->read_req.wait_handle != INVALID_HANDLE_VALUE) { in uv__process_pipe_read_req()
2129 UnregisterWait(handle->read_req.wait_handle); in uv__process_pipe_read_req()
2130 handle->read_req.wait_handle = INVALID_HANDLE_VALUE; in uv__process_pipe_read_req()
2387 HasOverlappedIoCompleted(&pipe->read_req.u.io.overlapped)) { in eof_timer_cb()