Searched refs:uv_pipe_bind2 (Results 1 – 6 of 6) sorted by relevance
/libuv/test/ |
H A D | test-pipe-getsockname.c | 139 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 D | test-pipe-bind-error.c | 187 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 D | pipe.rst | 59 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 D | pipe.c | 57 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 D | pipe.c | 705 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 D | uv.h | 860 UV_EXTERN int uv_pipe_bind2(uv_pipe_t* handle,
|
Completed in 18 milliseconds