Home
last modified time | relevance | path

Searched refs:uv_pipe_bind2 (Results 1 – 6 of 6) sorted by relevance

/libuv/test/
H A Dtest-pipe-getsockname.c139 r = uv_pipe_bind2(&pipe_server, "bad\0path", 8, 0); in TEST_IMPL()
150 r = uv_pipe_bind2(&pipe_server, namebuf, namelen, 0); in TEST_IMPL()
225 ASSERT_OK(uv_pipe_bind2(&pipe_server, name, sizeof(name) - 1, 0)); in TEST_IMPL()
247 ASSERT_EQ(UV_EINVAL, uv_pipe_bind2(&pipe_server, name, sizeof(name), 0)); in TEST_IMPL()
273 ASSERT_OK(uv_pipe_bind2(&pipe_server, "", 0, 0)); in TEST_IMPL()
292 ASSERT_EQ(UV_EINVAL, uv_pipe_bind2(&pipe_server, "", 0, 0)); in TEST_IMPL()
H A Dtest-pipe-bind-error.c187 uv_pipe_bind2(&pipe, path, sizeof(path), UV_PIPE_NO_TRUNCATE)); in TEST_IMPL()
194 uv_pipe_bind2(&pipe, path, sizeof(path), UV_PIPE_NO_TRUNCATE)); in TEST_IMPL()
/libuv/docs/src/
H A Dpipe.rst59 unlike :c:func:`uv_pipe_bind2`.
61 Alias for ``uv_pipe_bind2(handle, name, strlen(name), 0)``.
67 .. c:function:: int uv_pipe_bind2(uv_pipe_t* handle, const char* name, size_t namelen, unsigned int…
/libuv/src/unix/
H A Dpipe.c57 return uv_pipe_bind2(handle, name, strlen(name), 0); in uv_pipe_bind()
61 int uv_pipe_bind2(uv_pipe_t* handle, in uv_pipe_bind2() function
/libuv/src/win/
H A Dpipe.c705 return uv_pipe_bind2(handle, name, strlen(name), 0); in uv_pipe_bind()
709 int uv_pipe_bind2(uv_pipe_t* handle, in uv_pipe_bind2() function
/libuv/include/
H A Duv.h860 UV_EXTERN int uv_pipe_bind2(uv_pipe_t* handle,

Completed in 18 milliseconds