Home
last modified time | relevance | path

Searched refs:uv_os_fd_t (Results 1 – 22 of 22) sorted by relevance

/third_party/libuv/src/win/
Dcore.c656 int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd) { in uv_fileno()
657 uv_os_fd_t fd_out; in uv_fileno()
661 fd_out = (uv_os_fd_t)((uv_tcp_t*) handle)->socket; in uv_fileno()
673 fd_out = (uv_os_fd_t)((uv_udp_t*) handle)->socket; in uv_fileno()
677 fd_out = (uv_os_fd_t)((uv_poll_t*) handle)->socket; in uv_fileno()
731 uv_os_fd_t fd; in uv__getsockpeername()
Dhandle.c156 uv_os_fd_t uv_get_osfhandle(int fd) { in uv_get_osfhandle()
160 int uv_open_osfhandle(uv_os_fd_t os_fd) { in uv_open_osfhandle()
/third_party/libuv/test/
Dtest-udp-create-socket-early.c38 uv_os_fd_t fd; in TEST_IMPL()
79 uv_os_fd_t fd; in TEST_IMPL()
Dtest-tcp-oob.c62 uv_os_fd_t fd; in read_cb()
85 uv_os_fd_t fd; in connection_cb()
Drun-tests.c208 uv_os_fd_t closed_fd; in maybe_run_test()
209 uv_os_fd_t open_fd; in maybe_run_test()
Dtest-tcp-create-socket-early.c98 uv_os_fd_t fd; in TEST_IMPL()
139 uv_os_fd_t fd; in TEST_IMPL()
Dtest-poll-oob.c38 static uv_os_fd_t client_fd;
39 static uv_os_fd_t server_fd;
Dtest-tcp-write-fail.c40 uv_os_fd_t fd; in close_socket()
Dtest-handle-fileno.c50 uv_os_fd_t fd; in TEST_IMPL()
Dtest-spawn.c690 uv_os_fd_t handle; in TEST_IMPL()
1505 uv_os_fd_t fd; in TEST_IMPL()
1506 uv_os_fd_t dup_fd; in TEST_IMPL()
Dtest-fs.c3682 uv_os_fd_t fd; in TEST_IMPL()
3720 uv_os_fd_t handle; in TEST_IMPL()
/third_party/libuv/src/unix/
Dpipe.c384 int uv_pipe(uv_os_fd_t fds[2], int read_flags, int write_flags) { in uv_pipe()
385 uv_os_fd_t temp[2]; in uv_pipe()
Dcore.c752 int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd) { in uv_fileno()
1401 uv_os_fd_t uv_get_osfhandle(int fd) { in uv_get_osfhandle()
1405 int uv_open_osfhandle(uv_os_fd_t os_fd) { in uv_open_osfhandle()
1507 uv_os_fd_t fd; in uv__getsockpeername()
/third_party/libuv/docs/code/multi-echo-server/
Dworker.c71 uv_os_fd_t fd; in on_new_connection()
/third_party/libuv/include/uv/
Dunix.h128 typedef int uv_os_fd_t; typedef
Dwin.h240 typedef HANDLE uv_os_fd_t; typedef
/third_party/node/src/
Dnode_report_utils.cc236 uv_os_fd_t fd_v; in WalkHandle()
/third_party/libuv/include/
Duv.h478 UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);
1184 UV_EXTERN uv_os_fd_t uv_get_osfhandle(int fd);
1185 UV_EXTERN int uv_open_osfhandle(uv_os_fd_t os_fd);
/third_party/libuv/include/uv_ndk/
Duv.h476 UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);
1170 UV_EXTERN uv_os_fd_t uv_get_osfhandle(int fd);
1171 UV_EXTERN int uv_open_osfhandle(uv_os_fd_t os_fd);
/third_party/libuv/docs/src/
Dhandle.rst222 .. c:function:: int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd)
Dfs.rst525 .. c:function:: uv_os_fd_t uv_get_osfhandle(int fd)
534 .. c:function:: int uv_open_osfhandle(uv_os_fd_t os_fd)
Dmisc.rst63 .. c:type:: uv_os_fd_t