Home
last modified time | relevance | path

Searched refs:uv_pipe_bind (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-pipe-bind-error.c50 r = uv_pipe_bind(&server1, TEST_PIPENAME); in TEST_IMPL()
55 r = uv_pipe_bind(&server2, TEST_PIPENAME); in TEST_IMPL()
82 r = uv_pipe_bind(&server, BAD_PIPENAME); in TEST_IMPL()
102 r = uv_pipe_bind(&server, TEST_PIPENAME); in TEST_IMPL()
104 r = uv_pipe_bind(&server, TEST_PIPENAME_2); in TEST_IMPL()
147 ASSERT_EQ(uv_pipe_bind(&server, TEST_PIPENAME), UV_EINVAL); in TEST_IMPL()
H A Dtest-ipc-send-recv.c210 r = uv_pipe_bind(&ctx.send.pipe, TEST_PIPENAME); in run_ipc_send_recv_pipe()
216 r = uv_pipe_bind(&ctx.send2.pipe, TEST_PIPENAME_2); in run_ipc_send_recv_pipe()
385 r = uv_pipe_bind(&ctx2.listen, TEST_PIPENAME_3); in run_ipc_send_recv_helper()
H A Dtest-pipe-pending-instances.c44 r = uv_pipe_bind(&pipe_handle, TEST_PIPENAME); in TEST_IMPL()
H A Dtest-pipe-server-close.c76 r = uv_pipe_bind(&pipe_server, TEST_PIPENAME); in TEST_IMPL()
H A Dtest-pipe-connect-multiple.c85 r = uv_pipe_bind(&server_handle, TEST_PIPENAME); in TEST_IMPL()
H A Dtest-pipe-set-fchmod.c39 r = uv_pipe_bind(&pipe_handle, TEST_PIPENAME); in TEST_IMPL()
H A Dtest-handle-fileno.c95 r = uv_pipe_bind(&pipe, TEST_PIPENAME); in TEST_IMPL()
H A Dtest-pipe-getsockname.c112 r = uv_pipe_bind(&pipe_server, TEST_PIPENAME); in TEST_IMPL()
H A Decho-server.c370 r = uv_pipe_bind(&pipeServer, pipeName); in pipe_echo_start()
H A Dbenchmark-pump.c410 r = uv_pipe_bind(&pipeServer, TEST_PIPENAME); in HELPER_IMPL()
H A Dbenchmark-multi-accept.c227 ASSERT(0 == uv_pipe_bind(&ctx.ipc_pipe, IPC_PIPE_NAME)); in send_listen_handles()
/netbsd-src/external/mit/libuv/dist/docs/code/pipe-echo-server/
H A Dmain.c85 if ((r = uv_pipe_bind(&server, PIPENAME))) { in main()
/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dpipe.c43 int uv_pipe_bind(uv_pipe_t* handle, const char* name) { in uv_pipe_bind() function
/netbsd-src/external/mit/libuv/dist/docs/src/
H A Dpipe.rst54 .. c:function:: int uv_pipe_bind(uv_pipe_t* handle, const char* name)
/netbsd-src/external/mit/libuv/dist/include/
H A Duv.h797 UV_EXTERN int uv_pipe_bind(uv_pipe_t* handle, const char* name);
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dpipe.c696 int uv_pipe_bind(uv_pipe_t* handle, const char* name) { in uv_pipe_bind() function
/netbsd-src/external/mit/libuv/dist/
H A DChangeLog2524 * unix: inline uv_pipe_bind() err_bind goto target (cjihrig)