Searched refs:UV_NONBLOCK_PIPE (Results 1 - 16 of 16) sorted by relevance
/third_party/node/deps/uv/src/unix/ |
H A D | pipe.c | 408 if ((read_flags & UV_NONBLOCK_PIPE) && (write_flags & UV_NONBLOCK_PIPE)) in uv_pipe() 430 if (read_flags & UV_NONBLOCK_PIPE) in uv_pipe() 434 if (write_flags & UV_NONBLOCK_PIPE) in uv_pipe() 451 flags & UV_NONBLOCK_PIPE, in uv__make_pipe() 452 flags & UV_NONBLOCK_PIPE); in uv__make_pipe()
|
H A D | tcp.c | 483 if ((flags0 & UV_NONBLOCK_PIPE) && (flags1 & UV_NONBLOCK_PIPE)) in uv_socketpair() 504 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 507 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
H A D | async.c | 217 err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE); in uv__async_start()
|
H A D | signal.c | 268 err = uv__make_pipe(loop->signal_pipefd, UV_NONBLOCK_PIPE); in uv__signal_loop_once_init()
|
/third_party/libuv/src/unix/ |
H A D | pipe.c | 493 if ((read_flags & UV_NONBLOCK_PIPE) && (write_flags & UV_NONBLOCK_PIPE)) in uv_pipe() 515 if (read_flags & UV_NONBLOCK_PIPE) in uv_pipe() 519 if (write_flags & UV_NONBLOCK_PIPE) in uv_pipe() 536 flags & UV_NONBLOCK_PIPE, in uv__make_pipe() 537 flags & UV_NONBLOCK_PIPE); in uv__make_pipe()
|
H A D | tcp.c | 619 if ((flags0 & UV_NONBLOCK_PIPE) && (flags1 & UV_NONBLOCK_PIPE)) in uv_socketpair() 640 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 643 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
H A D | async.c | 221 err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE); in uv__async_start()
|
H A D | signal.c | 287 err = uv__make_pipe(loop->signal_pipefd, UV_NONBLOCK_PIPE); in uv__signal_loop_once_init()
|
/third_party/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()
|
/third_party/node/deps/uv/src/win/ |
H A D | pipe.c | 245 /* allowed flags are: UV_READABLE_PIPE | UV_WRITABLE_PIPE | UV_NONBLOCK_PIPE */ in uv__create_pipe_pair() 262 if (server_flags & UV_NONBLOCK_PIPE) in uv__create_pipe_pair() 296 (client_flags & UV_NONBLOCK_PIPE) ? FILE_FLAG_OVERLAPPED : 0, in uv__create_pipe_pair() 410 server_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair() 411 if (flags & UV_NONBLOCK_PIPE || parent_pipe->ipc) { in uv__create_stdio_pipe_pair() 412 client_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair()
|
H A D | tcp.c | 1607 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 1609 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
/third_party/libuv/src/win/ |
H A D | pipe.c | 253 /* allowed flags are: UV_READABLE_PIPE | UV_WRITABLE_PIPE | UV_NONBLOCK_PIPE */ in uv__create_pipe_pair() 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() 418 server_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair() 419 if (flags & UV_NONBLOCK_PIPE || parent_pipe->ipc) { in uv__create_stdio_pipe_pair() 420 client_flags |= UV_NONBLOCK_PIPE; in uv__create_stdio_pipe_pair()
|
H A D | tcp.c | 1575 if (flags0 & UV_NONBLOCK_PIPE) in uv_socketpair() 1577 if (flags1 & UV_NONBLOCK_PIPE) in uv_socketpair()
|
/third_party/libuv/include/ |
H A D | uv.h | 1015 * When UV_CREATE_PIPE is specified, specifying UV_NONBLOCK_PIPE opens the 1020 UV_NONBLOCK_PIPE = 0x40, enumerator
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 943 * When UV_CREATE_PIPE is specified, specifying UV_NONBLOCK_PIPE opens the 948 UV_NONBLOCK_PIPE = 0x40, enumerator
|
/third_party/node/deps/uv/include/ |
H A D | uv.h | 957 * When UV_CREATE_PIPE is specified, specifying UV_NONBLOCK_PIPE opens the 962 UV_NONBLOCK_PIPE = 0x40, enumerator
|
Completed in 24 milliseconds