Home
last modified time | relevance | path

Searched refs:UV_CREATE_PIPE (Results 1 – 13 of 13) sorted by relevance

/third_party/libuv/test/
Dtest-spawn.c290 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
594 options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE; in TEST_IMPL()
596 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
635 options.stdio[3].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
793 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
873 options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE; in TEST_IMPL()
875 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
877 options.stdio[2].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
924 options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE; in TEST_IMPL()
926 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in TEST_IMPL()
[all …]
Dtest-stdio-over-pipes.c132 options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE | in test_stdio_over_pipes()
135 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE | in test_stdio_over_pipes()
Dbenchmark-spawn.c122 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in spawn()
Dtest-ipc.c310 stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE | UV_WRITABLE_PIPE; in spawn_helper()
/third_party/libuv/src/win/
Dprocess-stdio.c208 switch (fdopt.flags & (UV_IGNORE | UV_CREATE_PIPE | UV_INHERIT_FD | in uv__stdio_create()
230 case UV_CREATE_PIPE: { in uv__stdio_create()
Dprocess.c1148 if (fdopt->flags & UV_CREATE_PIPE && in uv_spawn()
/third_party/libuv/src/unix/
Dprocess.c169 mask = UV_IGNORE | UV_CREATE_PIPE | UV_INHERIT_FD | UV_INHERIT_STREAM; in uv__process_init_stdio()
175 case UV_CREATE_PIPE: in uv__process_init_stdio()
207 if (!(container->flags & UV_CREATE_PIPE) || pipefds[0] < 0) in uv__process_open_stream()
228 if (!(container->flags & UV_CREATE_PIPE)) return; in uv__process_close_stream()
/third_party/libuv/docs/code/multi-echo-server/
Dmain.c79 child_stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE; in setup_workers()
/third_party/libuv/docs/src/
Dprocess.rst130 UV_CREATE_PIPE = 0x01,
146 * When UV_CREATE_PIPE is specified, UV_READABLE_PIPE and UV_WRITABLE_PIPE
154 * When UV_CREATE_PIPE is specified, specifying UV_NONBLOCK_PIPE opens the
/third_party/node/src/
Dprocess_wrap.cc121 UV_CREATE_PIPE | UV_READABLE_PIPE | UV_WRITABLE_PIPE); in ParseStdioOptions()
125 UV_CREATE_PIPE | UV_READABLE_PIPE | UV_WRITABLE_PIPE | in ParseStdioOptions()
Dspawn_sync.cc208 flags = UV_CREATE_PIPE; in uv_flags()
/third_party/libuv/docs/src/guide/
Dprocesses.rst260 ``UV_CREATE_PIPE`` and ``UV_READABLE_PIPE`` or ``UV_WRITABLE_PIPE``. The
273 `UV_CREATE_PIPE` flag, it opts for creating a `socketpair(2)`_.
/third_party/libuv/include/
Duv.h944 UV_CREATE_PIPE = 0x01, enumerator