Searched refs:fd_out (Results 1 – 7 of 7) sorted by relevance
/libuv/src/win/ |
H A D | core.c | 689 uv_os_fd_t fd_out; in uv_fileno() local 693 fd_out = (uv_os_fd_t)((uv_tcp_t*) handle)->socket; in uv_fileno() 697 fd_out = ((uv_pipe_t*) handle)->handle; in uv_fileno() 701 fd_out = ((uv_tty_t*) handle)->handle; in uv_fileno() 705 fd_out = (uv_os_fd_t)((uv_udp_t*) handle)->socket; in uv_fileno() 709 fd_out = (uv_os_fd_t)((uv_poll_t*) handle)->socket; in uv_fileno() 716 if (uv_is_closing(handle) || fd_out == INVALID_HANDLE_VALUE) in uv_fileno() 719 *fd = fd_out; in uv_fileno()
|
H A D | fs.c | 2226 int fd_in = req->file.fd, fd_out = req->fs.info.fd_out; in fs__sendfile() local 2256 n = _write(fd_out, buf, n); in fs__sendfile() 3454 int uv_fs_sendfile(uv_loop_t* loop, uv_fs_t* req, uv_file fd_out, in uv_fs_sendfile() argument 3458 req->fs.info.fd_out = fd_out; in uv_fs_sendfile()
|
/libuv/src/unix/ |
H A D | freebsd.c | 280 int fd_out, in uv__fs_copy_file_range() argument 286 return copy_file_range(fd_in, off_in, fd_out, off_out, len, flags); in uv__fs_copy_file_range()
|
H A D | internal.h | 446 int fd_out, 477 int fd_out,
|
H A D | core.c | 811 int fd_out; in uv_fileno() local 817 fd_out = uv__stream_fd((uv_stream_t*) handle); in uv_fileno() 821 fd_out = ((uv_udp_t *) handle)->io_watcher.fd; in uv_fileno() 825 fd_out = ((uv_poll_t *) handle)->io_watcher.fd; in uv_fileno() 832 if (uv__is_closing(handle) || fd_out == -1) in uv_fileno() 835 *fd = fd_out; in uv_fileno()
|
H A D | linux.c | 377 int fd_out, in uv__fs_copy_file_range() argument 386 fd_out, in uv__fs_copy_file_range()
|
/libuv/include/uv/ |
H A D | win.h | 634 int fd_out; \
|
Completed in 33 milliseconds