Searched refs:UV_NONBLOCK_PIPE (Results 1 – 11 of 11) sorted by relevance
/libuv/src/unix/ |
H A D | pipe.c | 500 if ((read_flags & UV_NONBLOCK_PIPE) && (write_flags & UV_NONBLOCK_PIPE)) in uv_pipe() 522 if (read_flags & UV_NONBLOCK_PIPE) in uv_pipe() 526 if (write_flags & UV_NONBLOCK_PIPE) in uv_pipe() 543 flags & UV_NONBLOCK_PIPE, in uv__make_pipe() 544 flags & UV_NONBLOCK_PIPE); in uv__make_pipe()
|
H A D | tcp.c | 637 if ((flags0 & UV_NONBLOCK_PIPE) && (flags1 & UV_NONBLOCK_PIPE)) in uv_socketpair() 658 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 661 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
H A D | async.c | 301 err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE); 306 err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE);
|
H A D | signal.c | 268 err = uv__make_pipe(loop->signal_pipefd, UV_NONBLOCK_PIPE); in uv__signal_loop_once_init()
|
/libuv/test/ |
H A D | test-ping-pong.c | 318 ASSERT_OK(uv_socketpair(SOCK_STREAM, 0, fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE)); in socketpair_pinger_new() 352 ASSERT_OK(uv_pipe(fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE)); in pipe2_pinger_new()
|
/libuv/docs/src/ |
H A D | process.rst | 161 * When UV_CREATE_PIPE is specified, specifying UV_NONBLOCK_PIPE opens the 166 UV_NONBLOCK_PIPE = 0x40
|
H A D | pipe.rst | 175 - UV_NONBLOCK_PIPE: Opens the specified socket handle for `OVERLAPPED`
|
H A D | tcp.rst | 183 - UV_NONBLOCK_PIPE: Opens the specified socket handle for `OVERLAPPED`
|
/libuv/src/win/ |
H A D | pipe.c | 270 if (server_flags & UV_NONBLOCK_PIPE) in uv__create_pipe_pair() 304 (client_flags & UV_NONBLOCK_PIPE) ? FILE_FLAG_OVERLAPPED : 0, in uv__create_pipe_pair() 423 server_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair() 424 if (flags & UV_NONBLOCK_PIPE || parent_pipe->ipc) { in uv__create_stdio_pipe_pair() 425 client_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair()
|
H A D | tcp.c | 1582 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 1584 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
/libuv/include/ |
H A D | uv.h | 1034 UV_NONBLOCK_PIPE = 0x40, enumerator
|
Completed in 29 milliseconds