Searched refs:uv_pipe_open (Results 1 – 21 of 21) sorted by relevance
/libuv/docs/code/uvtee/ |
H A D | main.c | 65 uv_pipe_open(&stdin_pipe, 0); in main() 68 uv_pipe_open(&stdout_pipe, 1); in main() 73 uv_pipe_open(&file_pipe, fd); in main()
|
/libuv/test/ |
H A D | test-stdio-over-pipes.c | 237 uv_pipe_open(&stdin_pipe1, 0); in stdio_over_pipes_helper() 238 uv_pipe_open(&stdout_pipe1, 1); in stdio_over_pipes_helper() 239 uv_pipe_open(&stdin_pipe2, 0); in stdio_over_pipes_helper() 240 uv_pipe_open(&stdout_pipe2, 1); in stdio_over_pipes_helper()
|
H A D | test-iouring-pollhup.c | 69 ASSERT_OK(uv_pipe_open(&p2, newpipefds[0])); in idle_cb() 97 ASSERT_OK(uv_pipe_open(&p1, pipefds[0])); in TEST_IMPL()
|
H A D | test-pipe-close-stdout-read-stdin.c | 89 r = uv_pipe_open((uv_pipe_t *)&stdin_pipe, 0); in TEST_IMPL()
|
H A D | test-close-fd.c | 60 ASSERT_OK(uv_pipe_open(&pipe_handle, fd[0])); in TEST_IMPL()
|
H A D | test-signal-pending-on-close.c | 75 ASSERT_OK(uv_pipe_open(&pipe_hdl, pipefds[1])); in TEST_IMPL()
|
H A D | test-pipe-set-non-blocking.c | 82 ASSERT_OK(uv_pipe_open(&pipe_handle, fd[1])); in TEST_IMPL()
|
H A D | test-ipc.c | 690 uv_pipe_open(&channel, 0); in ipc_helper() 741 uv_pipe_open(&channel, 0); in ipc_helper_tcp_connection() 795 uv_pipe_open(&channel, 0); in ipc_helper_bind_twice() 836 uv_pipe_open(&channel, 0); in ipc_helper_send_zero()
|
H A D | test-ping-pong.c | 359 ASSERT_OK(uv_pipe_open(ponger, fds[0])); in pipe2_pinger_new() 368 ASSERT_OK(uv_pipe_open(&pinger->stream.pipe, fds[1])); in pipe2_pinger_new()
|
H A D | test-ipc-heavy-traffic-deadlock-bug.c | 150 r = uv_pipe_open(&pipe, 0); in ipc_helper_heavy_traffic_deadlock_bug()
|
H A D | test-pipe-sendmsg.c | 123 ASSERT_OK(uv_pipe_open(&p, fds[1])); in TEST_IMPL()
|
H A D | test-spawn.c | 1766 ASSERT_OK(uv_pipe_open(&pipe_handle, fd[0])); in TEST_IMPL() 1910 ASSERT_OK(uv_pipe_open(&pipe_stdin_child, fds_stdin[0])); in TEST_IMPL() 1911 ASSERT_OK(uv_pipe_open(&pipe_stdout_child, fds_stdout[1])); in TEST_IMPL() 1912 ASSERT_OK(uv_pipe_open(&pipe_stdin_parent, fds_stdin[1])); in TEST_IMPL() 1913 ASSERT_OK(uv_pipe_open(&pipe_stdout_parent, fds_stdout[0])); in TEST_IMPL()
|
H A D | test-ipc-send-recv.c | 397 r = uv_pipe_open(&ctx2.channel, 0); in run_ipc_send_recv_helper()
|
H A D | test-pipe-getsockname.c | 317 r = uv_pipe_open(&pipe_client, readfd); in TEST_IMPL()
|
/libuv/docs/code/multi-echo-server/ |
H A D | worker.c | 85 uv_pipe_open(&queue, 0); in main()
|
/libuv/docs/src/ |
H A D | pipe.rst | 44 .. c:function:: int uv_pipe_open(uv_pipe_t* handle, uv_file file) 170 The resulting handles can be passed to `uv_pipe_open`, used with `uv_spawn`,
|
/libuv/src/unix/ |
H A D | pipe.c | 194 int uv_pipe_open(uv_pipe_t* handle, uv_file fd) { in uv_pipe_open() function
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 219 pipes. This is covered in :doc:`processes`. The ``uv_pipe_open()`` call
|
H A D | processes.rst | 356 ``uv_pipe_open``.
|
/libuv/include/ |
H A D | uv.h | 858 UV_EXTERN int uv_pipe_open(uv_pipe_t*, uv_file file);
|
/libuv/src/win/ |
H A D | pipe.c | 2420 int uv_pipe_open(uv_pipe_t* pipe, uv_file file) { in uv_pipe_open() function
|
Completed in 40 milliseconds