Home
last modified time | relevance | path

Searched refs:uv_tcp_open (Results 1 – 10 of 10) sorted by relevance

/third_party/libuv/test/
Dtest-tcp-open.c250 r = uv_tcp_open(&client, sock); in TEST_IMPL()
264 r = uv_tcp_open(&client2, sock); in TEST_IMPL()
297 r = uv_tcp_open(&client, sock1); in TEST_IMPL()
300 r = uv_tcp_open(&client, sock2); in TEST_IMPL()
326 ASSERT(0 == uv_tcp_open(&server, sock)); in TEST_IMPL()
350 ASSERT(0 == uv_tcp_open(&client, sock)); in TEST_IMPL()
382 r = uv_tcp_open(&client, sock); in TEST_IMPL()
Dtest-ping-pong.c327 ASSERT_EQ(0, uv_tcp_open(&pinger->stream.tcp, fds[1])); in socketpair_pinger_new()
333 ASSERT_EQ(0, uv_tcp_open(ponger, fds[0])); in socketpair_pinger_new()
Dtest-spawn.c671 r = uv_tcp_open(&tcp, handle); in spawn_tcp_server_helper()
/third_party/libuv/docs/src/
Dtcp.rst44 .. c:function:: int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock)
134 The resulting handles can be passed to `uv_tcp_open`, used with `uv_spawn`,
/third_party/libuv/src/unix/
Dtcp.c270 int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock) { in uv_tcp_open() function
/third_party/node/src/
Dtcp_wrap.cc206 int err = uv_tcp_open(&wrap->handle_, fd); in Open()
/third_party/libuv/include/
Duv.h569 UV_EXTERN int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock);
/third_party/libuv/include/uv_ndk/
Duv.h557 UV_EXTERN int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock);
/third_party/libuv/src/win/
Dtcp.c1506 int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock) { in uv_tcp_open() function
/third_party/libuv/
DChangeLog2274 * win: allow bound/connected socket in uv_tcp_open() (Maciej Szeptuch