/third_party/libuv/test/ |
D | test-spawn.c | 190 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 210 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 250 ASSERT(0 == uv_spawn(uv_default_loop(), &process, &options)); in TEST_IMPL() 266 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 294 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 338 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 394 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 456 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 533 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() 600 r = uv_spawn(uv_default_loop(), &process, &options); in TEST_IMPL() [all …]
|
D | test-process-title.c | 120 ASSERT(0 == uv_spawn(uv_default_loop(), &process, &options)); in TEST_IMPL()
|
D | benchmark-spawn.c | 125 r = uv_spawn(loop, &process, &options); in spawn()
|
D | test-stdio-over-pipes.c | 142 r = uv_spawn(loop, &process, &options); in test_stdio_over_pipes()
|
D | test-ref.c | 420 r = uv_spawn(uv_default_loop(), &h, &options); in TEST_IMPL()
|
D | test-ipc.c | 317 r = uv_spawn(uv_default_loop(), process, &options); in spawn_helper()
|
/third_party/libuv/docs/src/ |
D | process.rst | 20 Options for spawning the process (passed to :c:func:`uv_spawn`. 168 The PID of the spawned process. It's set after calling :c:func:`uv_spawn`. 198 Various flags that control how :c:func:`uv_spawn` behaves. See 220 This is not supported on Windows, :c:func:`uv_spawn` will fail and set the error 250 .. c:function:: int uv_spawn(uv_loop_t* loop, uv_process_t* handle, const uv_process_options_t* opt…
|
D | pipe.rst | 126 The resulting handles can be passed to `uv_pipe_open`, used with `uv_spawn`,
|
D | tcp.rst | 134 The resulting handles can be passed to `uv_tcp_open`, used with `uv_spawn`,
|
/third_party/libuv/docs/code/detach/ |
D | main.c | 23 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
|
/third_party/libuv/docs/code/spawn/ |
D | main.c | 28 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
|
/third_party/libuv/docs/code/proc-streams/ |
D | main.c | 43 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
|
/third_party/libuv/docs/code/cgi/ |
D | main.c | 44 if ((r = uv_spawn(loop, &child_req, &options))) { in invoke_cgi_script()
|
/third_party/libuv/docs/code/multi-echo-server/ |
D | main.c | 92 uv_spawn(loop, &worker->req, &worker->options); in setup_workers()
|
/third_party/libuv/docs/src/guide/ |
D | processes.rst | 26 exits. This is achieved using ``uv_spawn``. 46 ``uv_spawn`` uses :man:`execvp(3)` internally, there is no need to supply the full 50 After the call to ``uv_spawn``, ``uv_process_t.pid`` will contain the process 92 Changing the UID/GID is only supported on Unix, ``uv_spawn`` will fail on 272 `pipe(7)`_. When ``uv_spawn`` initializes a ``uv_pipe_t`` due to the
|
/third_party/node/src/ |
D | process_wrap.cc | 262 int err = uv_spawn(env->event_loop(), &wrap->process_, &options); in Spawn()
|
D | spawn_sync.cc | 500 r = uv_spawn(uv_loop_, &uv_process_, &uv_process_options_); in TryInitializeAndRunLoop()
|
/third_party/libuv/ |
D | ChangeLog | 131 * unix: protect fork in uv_spawn from signals (Jameson Nash) 1178 * win: fix uv_spawn() ENOMEM on empty env (Ben Noordhuis) 2019 * unix: avoid malloc() call in uv_spawn() (Ben Noordhuis) 3034 * process: fix uv_spawn edge-case (Santiago Gimeno) 3467 * unix: fix swapping fds order in uv_spawn (Saúl Ibarra Corretgé) 3469 * unix: fix potential bug if dup2 fails in uv_spawn (Saúl Ibarra Corretgé) 4010 * windows: add support for UNC paths on uv_spawn (Paul Goldsmith) 4196 * windows: Fix an infinite loop in uv_spawn (Alex Crichton) 4498 * windows: translate system errors in uv_spawn (Alexis Campailla) 4500 * windows: uv_spawn code refactor (Alexis Campailla) [all …]
|
/third_party/libuv/src/unix/ |
D | process.c | 938 int uv_spawn(uv_loop_t* loop, in uv_spawn() function
|
/third_party/libuv/src/win/ |
D | process.c | 938 int uv_spawn(uv_loop_t* loop, in uv_spawn() function
|
/third_party/libuv/include/ |
D | uv.h | 1079 UV_EXTERN int uv_spawn(uv_loop_t* loop,
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 1065 UV_EXTERN int uv_spawn(uv_loop_t* loop,
|