Searched refs:uv_pipe_getsockname (Results 1 – 6 of 6) sorted by relevance
/libuv/test/ |
H A D | test-pipe-getsockname.c | 71 r = uv_pipe_getsockname(&pipe_client, buf, &len); in pipe_client_connect_cb() 143 r = uv_pipe_getsockname(&pipe_server, buf, &len); in TEST_IMPL() 158 ASSERT_EQ(UV_ENOBUFS, uv_pipe_getsockname(&pipe_server, buf, &len)); in TEST_IMPL() 161 ASSERT_OK(uv_pipe_getsockname(&pipe_server, buf, &len)); in TEST_IMPL() 178 r = uv_pipe_getsockname(&pipe_client, buf, &len); in TEST_IMPL() 194 r = uv_pipe_getsockname(&pipe_client, buf, &len); in TEST_IMPL() 226 ASSERT_OK(uv_pipe_getsockname(&pipe_server, buf, &buflen)); in TEST_IMPL() 274 ASSERT_OK(uv_pipe_getsockname(&pipe_server, buf, &buflen)); in TEST_IMPL() 328 r = uv_pipe_getsockname(&pipe_client, buf1, &len1); in TEST_IMPL() 339 r = uv_pipe_getsockname(&pipe_client, buf2, &len2); in TEST_IMPL()
|
/libuv/src/unix/ |
H A D | pipe.c | 402 int uv_pipe_getsockname(const uv_pipe_t* handle, char* buffer, size_t* size) { in uv_pipe_getsockname() function 461 r = uv_pipe_getsockname(handle, NULL, &name_len); in uv_pipe_chmod() 469 r = uv_pipe_getsockname(handle, name_buffer, &name_len); in uv_pipe_chmod()
|
/libuv/docs/src/ |
H A D | pipe.rst | 114 .. c:function:: int uv_pipe_getsockname(const uv_pipe_t* handle, char* buffer, size_t* size)
|
/libuv/include/ |
H A D | uv.h | 874 UV_EXTERN int uv_pipe_getsockname(const uv_pipe_t* handle,
|
/libuv/src/win/ |
H A D | pipe.c | 2604 int uv_pipe_getsockname(const uv_pipe_t* handle, char* buffer, size_t* size) { in uv_pipe_getsockname() function
|
/libuv/ |
H A D | ChangeLog | 5273 * unix, windows: add uv_pipe_getsockname (Saúl Ibarra Corretgé)
|
Completed in 34 milliseconds