/third_party/libuv/src/win/ |
H A D | udp.c | 34 int uv_udp_getpeername(const uv_udp_t* handle, in uv_udp_getpeername() 46 int uv_udp_getsockname(const uv_udp_t* handle, in uv_udp_getsockname() 58 static int uv__udp_set_socket(uv_loop_t* loop, uv_udp_t* handle, SOCKET socket, in uv__udp_set_socket() 124 uv_udp_t* handle, in uv__udp_init_ex() 165 void uv__udp_close(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_close() 178 void uv__udp_endgame(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_endgame() 187 int uv_udp_using_recvmmsg(const uv_udp_t* handle) { in uv_udp_using_recvmmsg() 192 static int uv__udp_maybe_bind(uv_udp_t* handle, in uv__udp_maybe_bind() 262 static void uv__udp_queue_recv(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_queue_recv() 307 int uv__udp_recv_start(uv_udp_t* handl [all...] |
/third_party/node/deps/uv/src/win/ |
H A D | udp.c | 39 int uv_udp_getpeername(const uv_udp_t* handle, in uv_udp_getpeername() 51 int uv_udp_getsockname(const uv_udp_t* handle, in uv_udp_getsockname() 63 static int uv__udp_set_socket(uv_loop_t* loop, uv_udp_t* handle, SOCKET socket, in uv__udp_set_socket() 129 uv_udp_t* handle, in uv__udp_init_ex() 170 void uv__udp_close(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_close() 183 void uv__udp_endgame(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_endgame() 192 int uv_udp_using_recvmmsg(const uv_udp_t* handle) { in uv_udp_using_recvmmsg() 197 static int uv__udp_maybe_bind(uv_udp_t* handle, in uv__udp_maybe_bind() 267 static void uv__udp_queue_recv(uv_loop_t* loop, uv_udp_t* handle) { in uv__udp_queue_recv() 361 int uv__udp_recv_start(uv_udp_t* handl [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | udp.c | 49 static void uv__udp_run_completed(uv_udp_t* handle); 51 static void uv__udp_recvmsg(uv_udp_t* handle); 52 static void uv__udp_sendmsg(uv_udp_t* handle); 53 static int uv__udp_maybe_deferred_bind(uv_udp_t* handle, 61 static int uv__udp_recvmmsg(uv_udp_t* handle, uv_buf_t* buf); 62 static void uv__udp_sendmmsg(uv_udp_t* handle); 88 void uv__udp_close(uv_udp_t* handle) { in uv__udp_close() 99 void uv__udp_finish_close(uv_udp_t* handle) { in uv__udp_finish_close() 127 static void uv__udp_run_completed(uv_udp_t* handle) { in uv__udp_run_completed() 172 uv_udp_t* handl in uv__udp_io() [all...] |
/third_party/libuv/src/unix/ |
H A D | udp.c | 43 static void uv__udp_run_completed(uv_udp_t* handle); 45 static void uv__udp_recvmsg(uv_udp_t* handle); 46 static void uv__udp_sendmsg(uv_udp_t* handle); 47 static int uv__udp_maybe_deferred_bind(uv_udp_t* handle, 52 void uv__udp_close(uv_udp_t* handle) { in uv__udp_close() 63 void uv__udp_finish_close(uv_udp_t* handle) { in uv__udp_finish_close() 91 static void uv__udp_run_completed(uv_udp_t* handle) { in uv__udp_run_completed() 136 uv_udp_t* handle; in uv__udp_io() 138 handle = container_of(w, uv_udp_t, io_watcher); in uv__udp_io() 150 static int uv__udp_recvmmsg(uv_udp_t* handl [all...] |
/third_party/libuv/test/ |
H A D | test-udp-alloc-cb-fail.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 68 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb() 109 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-mmsg.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &recver || (uv_udp_t*)(handle) == &sender, 0) 37 static uv_udp_t recver; 38 static uv_udp_t sender; 53 if (uv_udp_using_recvmmsg((uv_udp_t*)handle)) in alloc_cb() 71 static void recv_cb(uv_udp_t* handle, in recv_cb()
|
H A D | test-udp-try-send.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 58 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-multicast-ttl.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client;
|
H A D | test-udp-send-and-recv.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 62 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb() 116 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-send-immediate.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 67 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-multicast-join.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 34 static uv_udp_t server; 35 static uv_udp_t client; 92 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb()
|
H A D | test-udp-multicast-interface6.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client;
|
H A D | test-udp-multicast-interface.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client;
|
H A D | test-udp-ipv6.c | 34 ASSERT_NE((uv_udp_t*)(handle) == &server \ 35 || (uv_udp_t*)(handle) == &client \ 41 static uv_udp_t client; 42 static uv_udp_t server; 109 static void ipv6_recv_fail(uv_udp_t* handle, in ipv6_recv_fail() 121 static void ipv6_recv_ok(uv_udp_t* handle, in ipv6_recv_ok()
|
H A D | test-udp-send-unreachable.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &client || (uv_udp_t*)(handle) == &client2, 0) 32 static uv_udp_t client; 33 static uv_udp_t client2; 77 static void recv_cb(uv_udp_t* handle, in recv_cb()
|
H A D | test-udp-connect6.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 83 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-connect.c | 30 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 32 static uv_udp_t server; 33 static uv_udp_t client; 83 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-udp-multicast-join6.c | 31 ASSERT_NE((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client, 0) 45 static uv_udp_t server; 46 static uv_udp_t client; 103 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb()
|
H A D | test-udp-open.c | 99 static void recv_cb(uv_udp_t* handle, in recv_cb() 141 uv_udp_t client, client2; in TEST_IMPL() 197 uv_udp_t client; in TEST_IMPL() 224 uv_udp_t client; in TEST_IMPL() 255 uv_udp_t client; in TEST_IMPL() 256 uv_udp_t server; in TEST_IMPL() 307 uv_udp_t handle; in TEST_IMPL()
|
H A D | test-udp-recv-in-a-row.c | 29 static uv_udp_t server; 30 static uv_udp_t client; 48 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb()
|
H A D | test-watcher-cross-stop.c | 32 static uv_udp_t sockets[1250]; 34 static uv_udp_t sockets[2500]; 48 static void recv_cb(uv_udp_t* handle, in recv_cb()
|
/third_party/libuv/src/ |
H A D | uv-common.h | 107 /* Used by uv_tcp_t and uv_udp_t handles */ 117 /* Only used by uv_udp_t handles. */ 163 uv_udp_t* handle, 167 int uv__udp_bind(uv_udp_t* handle, 172 int uv__udp_connect(uv_udp_t* handle, 176 int uv__udp_disconnect(uv_udp_t* handle); 178 int uv__udp_is_connected(uv_udp_t* handle); 181 uv_udp_t* handle, 188 int uv__udp_try_send(uv_udp_t* handle, 194 int uv__udp_recv_start(uv_udp_t* handl [all...] |
/third_party/node/deps/uv/src/ |
H A D | uv-common.h | 103 /* Used by uv_tcp_t and uv_udp_t handles */ 113 /* Only used by uv_udp_t handles. */ 159 uv_udp_t* handle, 163 int uv__udp_bind(uv_udp_t* handle, 168 int uv__udp_connect(uv_udp_t* handle, 172 int uv__udp_disconnect(uv_udp_t* handle); 174 int uv__udp_is_connected(uv_udp_t* handle); 177 uv_udp_t* handle, 184 int uv__udp_try_send(uv_udp_t* handle, 190 int uv__udp_recv_start(uv_udp_t* handl [all...] |
/third_party/libuv/include/ |
H A D | uv.h | 236 typedef struct uv_udp_s uv_udp_t; typedef 696 typedef void (*uv_udp_recv_cb)(uv_udp_t* handle, 702 /* uv_udp_t is a subclass of uv_handle_t. */ 721 uv_udp_t* handle; 726 UV_EXTERN int uv_udp_init(uv_loop_t*, uv_udp_t* handle); 727 UV_EXTERN int uv_udp_init_ex(uv_loop_t*, uv_udp_t* handle, unsigned int flags); 728 UV_EXTERN int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock); 729 UV_EXTERN int uv_udp_bind(uv_udp_t* handle, 732 UV_EXTERN int uv_udp_connect(uv_udp_t* handle, const struct sockaddr* addr); 734 UV_EXTERN int uv_udp_getpeername(const uv_udp_t* handl [all...] |
/third_party/node/deps/uv/include/ |
H A D | uv.h | 218 typedef struct uv_udp_s uv_udp_t; typedef 652 typedef void (*uv_udp_recv_cb)(uv_udp_t* handle, 658 /* uv_udp_t is a subclass of uv_handle_t. */ 677 uv_udp_t* handle; 682 UV_EXTERN int uv_udp_init(uv_loop_t*, uv_udp_t* handle); 683 UV_EXTERN int uv_udp_init_ex(uv_loop_t*, uv_udp_t* handle, unsigned int flags); 684 UV_EXTERN int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock); 685 UV_EXTERN int uv_udp_bind(uv_udp_t* handle, 688 UV_EXTERN int uv_udp_connect(uv_udp_t* handle, const struct sockaddr* addr); 690 UV_EXTERN int uv_udp_getpeername(const uv_udp_t* handl [all...] |