Searched refs:uv_pipe (Results 1 – 11 of 11) sorted by relevance
/third_party/libuv/test/ |
D | test-close-fd.c | 58 ASSERT(0 == uv_pipe(fd, 0, 0)); in TEST_IMPL()
|
D | test-pipe-set-non-blocking.c | 81 ASSERT(0 == uv_pipe(fd, 0, 0)); in TEST_IMPL()
|
D | test-ping-pong.c | 352 ASSERT_EQ(0, uv_pipe(fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE)); in pipe2_pinger_new()
|
D | test-spawn.c | 1575 ASSERT(0 == uv_pipe(fd, 0, 0)); in TEST_IMPL() 1735 ASSERT(uv_pipe(fds_stdin, 0, 0) == 0); in TEST_IMPL() 1736 ASSERT(uv_pipe(fds_stdout, 0, 0) == 0); in TEST_IMPL()
|
/third_party/node/src/ |
D | spawn_sync.cc | 132 int r = uv_pipe_init(loop, uv_pipe(), 0); in Initialize() 136 uv_pipe()->data = this; in Initialize() 218 uv_pipe_t* SyncProcessStdioPipe::uv_pipe() const { in uv_pipe() function in node::SyncProcessStdioPipe 225 return reinterpret_cast<uv_stream_t*>(uv_pipe()); in uv_stream() 230 return reinterpret_cast<uv_handle_t*>(uv_pipe()); in uv_handle()
|
D | spawn_sync.h | 92 inline uv_pipe_t* uv_pipe() const;
|
/third_party/libuv/src/unix/ |
D | pipe.c | 384 int uv_pipe(uv_os_fd_t fds[2], int read_flags, int write_flags) { in uv_pipe() function 432 return uv_pipe(fds, in uv__make_pipe()
|
/third_party/libuv/docs/src/ |
D | pipe.rst | 122 .. c:function:: int uv_pipe(uv_file fds[2], int read_flags, int write_flags)
|
/third_party/libuv/include/ |
D | uv.h | 482 UV_EXTERN int uv_pipe(uv_file fds[2], int read_flags, int write_flags);
|
/third_party/libuv/src/win/ |
D | pipe.c | 345 int uv_pipe(uv_file fds[2], int read_flags, int write_flags) { in uv_pipe() function
|
/third_party/libuv/ |
D | ChangeLog | 397 * stream: add uv_pipe and uv_socketpair to the API (Jameson Nash)
|