/libuv/test/ |
H A D | test-udp-send-unreachable.c | 140 r = uv_udp_send(&req1, in TEST_IMPL() 150 r = uv_udp_send(&req2, in TEST_IMPL() 173 r = uv_udp_send(&req3, in TEST_IMPL() 183 r = uv_udp_send(&req4, in TEST_IMPL()
|
H A D | test-udp-connect.c | 69 r = uv_udp_send(req, &client, &buf, 1, NULL, cl_send_cb); in cl_send_cb() 71 r = uv_udp_send(req, in cl_send_cb() 175 r = uv_udp_send(&req, in TEST_IMPL() 182 r = uv_udp_send(&req, &client, &buf, 1, NULL, cl_send_cb); in TEST_IMPL()
|
H A D | test-udp-connect6.c | 69 r = uv_udp_send(req, &client, &buf, 1, NULL, cl_send_cb); in cl_send_cb() 71 r = uv_udp_send(req, in cl_send_cb() 178 r = uv_udp_send(&req, in TEST_IMPL() 185 r = uv_udp_send(&req, &client, &buf, 1, NULL, cl_send_cb); in TEST_IMPL()
|
H A D | test-udp-send-immediate.c | 122 r = uv_udp_send(&req1, in TEST_IMPL() 132 r = uv_udp_send(&req2, in TEST_IMPL()
|
H A D | test-udp-alloc-cb-fail.c | 142 r = uv_udp_send(req, handle, &sndbuf, 1, addr, sv_send_cb); in sv_recv_cb() 172 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | test-udp-send-and-recv.c | 153 r = uv_udp_send(req, handle, &sndbuf, 1, addr, sv_send_cb); in sv_recv_cb() 185 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | test-udp-open.c | 162 r = uv_udp_send(&send_req, in TEST_IMPL() 283 r = uv_udp_send(&send_req, in TEST_IMPL() 334 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | benchmark-udp-pummel.c | 99 ASSERT_OK(uv_udp_send(&s->send_req, in send_cb() 194 ASSERT_OK(uv_udp_send(&s->send_req, in pummel()
|
H A D | test-udp-sendmmsg-error.c | 64 ASSERT_OK(uv_udp_send(&req[i], &client, &buf, 1, NULL, send_cb)); in TEST_IMPL()
|
H A D | test-udp-dgram-too-big.c | 73 r = uv_udp_send(&req_, in TEST_IMPL()
|
H A D | test-udp-multicast-ttl.c | 75 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | test-udp-multicast-interface.c | 82 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | test-udp-multicast-interface6.c | 89 r = uv_udp_send(&req, in TEST_IMPL()
|
H A D | test-udp-send-hang-loop.c | 58 r = uv_udp_send(&send_req, in idle_cb()
|
H A D | test-watcher-cross-stop.c | 89 ASSERT_OK(uv_udp_send(&reqs[i], in TEST_IMPL()
|
H A D | test-udp-multicast-join.c | 82 return uv_udp_send(send_req, in do_send()
|
H A D | test-udp-multicast-join6.c | 95 return uv_udp_send(send_req, in do_send()
|
H A D | test-udp-ipv6.c | 190 r = uv_udp_send(&req_, in do_test()
|
H A D | test-udp-reuseport.c | 250 r = uv_udp_send(&udp_send_requests[i], in TEST_IMPL()
|
H A D | test-getsockname.c | 317 r = uv_udp_send(&send_req, in udp_sender()
|
H A D | echo-server.c | 248 ASSERT_LE(0, uv_udp_send(req, handle, &sndbuf, 1, addr, on_send)); in on_recv()
|
H A D | test-ref.c | 332 uv_udp_send(&req, in TEST_IMPL()
|
/libuv/docs/src/ |
H A D | udp.rst | 86 Type definition for callback passed to :c:func:`uv_udp_send`, which is 317 implicitly with :c:func:`uv_udp_send()` or :c:func:`uv_udp_recv_start`. 330 implicitly with :c:func:`uv_udp_send()` or :c:func:`uv_udp_recv_start`. 343 implicitly with :c:func:`uv_udp_send()` or :c:func:`uv_udp_recv_start`. 356 implicitly with :c:func:`uv_udp_send()` or :c:func:`uv_udp_recv_start`. 369 implicitly with :c:func:`uv_udp_send()` or :c:func:`uv_udp_recv_start`. 375 .. c:function:: int uv_udp_send(uv_udp_send_t* req, uv_udp_t* handle, const uv_buf_t bufs[], unsign… 414 Same as :c:func:`uv_udp_send`, but won't queue a send request if it can't 439 cannot be sent right now; fall back to :c:func:`uv_udp_send`.
|
/libuv/docs/code/udp-dhcp/ |
H A D | main.c | 125 …uv_udp_send(&send_req, &send_socket, &discover_msg, 1, (const struct sockaddr *)&send_addr, on_sen… in main()
|
/libuv/docs/src/guide/ |
H A D | networking.rst | 129 Then we setup a similar send socket and use ``uv_udp_send`` to send
|