Searched refs:uv_fileno (Results 1 – 19 of 19) sorted by relevance
/third_party/libuv/test/ |
D | test-handle-fileno.c | 63 r = uv_fileno((uv_handle_t*) &idle, &fd); in TEST_IMPL() 69 r = uv_fileno((uv_handle_t*) &tcp, &fd); in TEST_IMPL() 73 r = uv_fileno((uv_handle_t*) &tcp, &fd); in TEST_IMPL() 76 r = uv_fileno((uv_handle_t*) &tcp, &fd); in TEST_IMPL() 81 r = uv_fileno((uv_handle_t*) &udp, &fd); in TEST_IMPL() 85 r = uv_fileno((uv_handle_t*) &udp, &fd); in TEST_IMPL() 88 r = uv_fileno((uv_handle_t*) &udp, &fd); in TEST_IMPL() 93 r = uv_fileno((uv_handle_t*) &pipe, &fd); in TEST_IMPL() 97 r = uv_fileno((uv_handle_t*) &pipe, &fd); in TEST_IMPL() 100 r = uv_fileno((uv_handle_t*) &pipe, &fd); in TEST_IMPL() [all …]
|
D | test-udp-create-socket-early.c | 46 r = uv_fileno((const uv_handle_t*) &client, &fd); in TEST_IMPL() 90 r = uv_fileno((const uv_handle_t*) &client, &fd); in TEST_IMPL()
|
D | test-tcp-oob.c | 65 ASSERT(0 == uv_fileno((uv_handle_t*)handle, &fd)); in read_cb() 92 ASSERT(0 == uv_fileno((uv_handle_t*) &client_handle, &fd)); in connection_cb()
|
D | test-tcp-create-socket-early.c | 106 r = uv_fileno((const uv_handle_t*) &client, &fd); in TEST_IMPL() 150 r = uv_fileno((const uv_handle_t*) &client, &fd); in TEST_IMPL()
|
D | test-poll-oob.c | 73 ASSERT(0 == uv_fileno((uv_handle_t*)handle, &fd)); in poll_cb() 140 ASSERT(0 == uv_fileno((uv_handle_t*) &peer_handle, &server_fd)); in connection_cb()
|
D | test-tcp-write-fail.c | 43 r = uv_fileno((uv_handle_t*)sock, &fd); in close_socket()
|
D | test-spawn.c | 703 r = uv_fileno((uv_handle_t*) &tcp_server, &handle); in TEST_IMPL() 706 r = uv_fileno((uv_handle_t*) &tcp_server, &fd); in TEST_IMPL()
|
/third_party/libuv/docs/code/multi-echo-server/ |
D | worker.c | 72 uv_fileno((const uv_handle_t*) client, &fd); in on_new_connection()
|
/third_party/libuv/src/win/ |
D | core.c | 656 int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd) { in uv_fileno() function 733 result = uv_fileno(handle, &fd); in uv__getsockpeername()
|
/third_party/node/src/ |
D | node_report_utils.cc | 237 int rc = uv_fileno(h, &fd_v); in WalkHandle()
|
D | stream_wrap.cc | 162 uv_fileno(reinterpret_cast<uv_handle_t*>(stream()), &fd); in GetFD()
|
D | udp_wrap.cc | 211 uv_fileno(reinterpret_cast<uv_handle_t*>(&wrap->handle_), &fd); in GetFD()
|
/third_party/libuv/docs/src/ |
D | migration_010_100.rst | 231 This is now properly exposed through the :c:func:`uv_fileno` function.
|
D | handle.rst | 222 .. c:function:: int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd)
|
/third_party/grpc/src/core/lib/iomgr/ |
D | tcp_uv.cc | 198 uv_fileno((uv_handle_t*)tcp, &fd); in uv_socket_init_helper()
|
/third_party/libuv/src/unix/ |
D | core.c | 752 int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd) { in uv_fileno() function 1510 r = uv_fileno(handle, &fd); in uv__getsockpeername()
|
/third_party/libuv/include/ |
D | uv.h | 478 UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 476 UV_EXTERN int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd);
|
/third_party/libuv/ |
D | ChangeLog | 3982 * unix, windows: add uv_fileno (Saúl Ibarra Corretgé)
|