HomeSort by: relevance | last modified time | path
    Searched refs:uv_pipe_bind (Results 1 - 14 of 14) sorted by relevancy

  /src/external/mit/libuv/dist/test/
test-pipe-bind-error.c 51 r = uv_pipe_bind(&server1, TEST_PIPENAME);
56 r = uv_pipe_bind(&server2, TEST_PIPENAME);
83 r = uv_pipe_bind(&server, BAD_PIPENAME);
103 r = uv_pipe_bind(&server, TEST_PIPENAME);
105 r = uv_pipe_bind(&server, TEST_PIPENAME_2);
148 ASSERT_EQ(uv_pipe_bind(&server, TEST_PIPENAME), UV_EINVAL);
test-pipe-pending-instances.c 44 r = uv_pipe_bind(&pipe_handle, TEST_PIPENAME);
test-pipe-server-close.c 76 r = uv_pipe_bind(&pipe_server, TEST_PIPENAME);
test-pipe-connect-multiple.c 85 r = uv_pipe_bind(&server_handle, TEST_PIPENAME);
151 r = uv_pipe_bind(&server_handle, TEST_PIPENAME);
test-pipe-set-fchmod.c 40 r = uv_pipe_bind(&pipe_handle, TEST_PIPENAME);
test-ipc-send-recv.c 214 r = uv_pipe_bind(&ctx.send.pipe, TEST_PIPENAME);
220 r = uv_pipe_bind(&ctx.send2.pipe, TEST_PIPENAME_2);
391 r = uv_pipe_bind(&ctx2.listen, TEST_PIPENAME_3);
test-handle-fileno.c 95 r = uv_pipe_bind(&pipe, TEST_PIPENAME);
benchmark-pump.c 410 r = uv_pipe_bind(&pipeServer, TEST_PIPENAME);
echo-server.c 370 r = uv_pipe_bind(&pipeServer, pipeName);
372 fprintf(stderr, "uv_pipe_bind: %s\n", uv_strerror(r));
benchmark-multi-accept.c 227 ASSERT(0 == uv_pipe_bind(&ctx.ipc_pipe, IPC_PIPE_NAME));
  /src/external/mit/libuv/dist/docs/code/pipe-echo-server/
main.c 85 if ((r = uv_pipe_bind(&server, PIPENAME))) {
  /src/external/mit/libuv/dist/src/unix/
pipe.c 58 int uv_pipe_bind(uv_pipe_t* handle, const char* name) { function
  /src/external/mit/libuv/dist/include/
uv.h 871 UV_EXTERN int uv_pipe_bind(uv_pipe_t* handle, const char* name);
  /src/external/mit/libuv/dist/src/win/
pipe.c 704 int uv_pipe_bind(uv_pipe_t* handle, const char* name) { function
1231 /* First pipe handle should have already been created in uv_pipe_bind */

Completed in 38 milliseconds