Home
last modified time | relevance | path

Searched refs:uv_pipe (Results 1 – 11 of 11) sorted by relevance

/third_party/libuv/test/
Dtest-close-fd.c58 ASSERT(0 == uv_pipe(fd, 0, 0)); in TEST_IMPL()
Dtest-pipe-set-non-blocking.c81 ASSERT(0 == uv_pipe(fd, 0, 0)); in TEST_IMPL()
Dtest-ping-pong.c352 ASSERT_EQ(0, uv_pipe(fds, UV_NONBLOCK_PIPE, UV_NONBLOCK_PIPE)); in pipe2_pinger_new()
Dtest-spawn.c1575 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/
Dspawn_sync.cc132 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()
Dspawn_sync.h92 inline uv_pipe_t* uv_pipe() const;
/third_party/libuv/src/unix/
Dpipe.c384 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/
Dpipe.rst122 .. c:function:: int uv_pipe(uv_file fds[2], int read_flags, int write_flags)
/third_party/libuv/include/
Duv.h482 UV_EXTERN int uv_pipe(uv_file fds[2], int read_flags, int write_flags);
/third_party/libuv/src/win/
Dpipe.c345 int uv_pipe(uv_file fds[2], int read_flags, int write_flags) { in uv_pipe() function
/third_party/libuv/
DChangeLog397 * stream: add uv_pipe and uv_socketpair to the API (Jameson Nash)