Searched refs:uv_udp_try_send (Results 1 – 11 of 11) sorted by relevance
/libuv/test/ |
H A D | test-udp-connect.c | 150 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL() 152 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL() 154 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &ext_addr); in TEST_IMPL() 167 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL() 169 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL()
|
H A D | test-udp-connect6.c | 153 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL() 155 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL() 157 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &ext_addr); in TEST_IMPL() 170 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL() 172 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL()
|
H A D | test-udp-try-send.c | 109 r = uv_udp_try_send(&client, &buf, 0, (const struct sockaddr*) &addr); in TEST_IMPL() 112 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &addr); in TEST_IMPL() 136 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &addr); in TEST_IMPL()
|
H A D | test-udp-recv-in-a-row.c | 103 r = uv_udp_try_send(&client, in TEST_IMPL() 112 r = uv_udp_try_send(&client, in TEST_IMPL()
|
H A D | test-udp-mmsg.c | 129 ASSERT_EQ(4, uv_udp_try_send(&sender, &buf, 1, (const struct sockaddr*) &addr)); in TEST_IMPL()
|
H A D | benchmark-ping-udp.c | 82 r = uv_udp_try_send(&pinger->udp, &buf, 1, in pinger_write_ping()
|
/libuv/docs/src/ |
H A D | udp.rst | 412 .. c:function:: int uv_udp_try_send(uv_udp_t* handle, const uv_buf_t bufs[], unsigned int nbufs, co… 431 Like :c:func:`uv_udp_try_send`, but can send multiple datagrams.
|
/libuv/src/ |
H A D | uv-common.c | 503 int uv_udp_try_send(uv_udp_t* handle, in uv_udp_try_send() function
|
/libuv/src/win/ |
H A D | udp.c | 1156 r = uv_udp_try_send(handle, bufs[i], nbufs[i], addrs[i]); in uv__udp_try_send2()
|
/libuv/include/ |
H A D | uv.h | 775 UV_EXTERN int uv_udp_try_send(uv_udp_t* handle,
|
/libuv/ |
H A D | ChangeLog | 3256 * win,udp: implements uv_udp_try_send (Barnabas Gema) 5001 * unix, win: add uv_udp_try_send (Andrius Bentkus)
|
Completed in 40 milliseconds