Home
last modified time | relevance | path

Searched refs:uv_spawn (Results 1 – 22 of 22) sorted by relevance

/third_party/libuv/test/
Dtest-spawn.c190 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 …]
Dtest-process-title.c120 ASSERT(0 == uv_spawn(uv_default_loop(), &process, &options)); in TEST_IMPL()
Dbenchmark-spawn.c125 r = uv_spawn(loop, &process, &options); in spawn()
Dtest-stdio-over-pipes.c142 r = uv_spawn(loop, &process, &options); in test_stdio_over_pipes()
Dtest-ref.c420 r = uv_spawn(uv_default_loop(), &h, &options); in TEST_IMPL()
Dtest-ipc.c317 r = uv_spawn(uv_default_loop(), process, &options); in spawn_helper()
/third_party/libuv/docs/src/
Dprocess.rst20 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…
Dpipe.rst126 The resulting handles can be passed to `uv_pipe_open`, used with `uv_spawn`,
Dtcp.rst134 The resulting handles can be passed to `uv_tcp_open`, used with `uv_spawn`,
/third_party/libuv/docs/code/detach/
Dmain.c23 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
/third_party/libuv/docs/code/spawn/
Dmain.c28 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
/third_party/libuv/docs/code/proc-streams/
Dmain.c43 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
/third_party/libuv/docs/code/cgi/
Dmain.c44 if ((r = uv_spawn(loop, &child_req, &options))) { in invoke_cgi_script()
/third_party/libuv/docs/code/multi-echo-server/
Dmain.c92 uv_spawn(loop, &worker->req, &worker->options); in setup_workers()
/third_party/libuv/docs/src/guide/
Dprocesses.rst26 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/
Dprocess_wrap.cc262 int err = uv_spawn(env->event_loop(), &wrap->process_, &options); in Spawn()
Dspawn_sync.cc500 r = uv_spawn(uv_loop_, &uv_process_, &uv_process_options_); in TryInitializeAndRunLoop()
/third_party/libuv/
DChangeLog131 * 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/
Dprocess.c938 int uv_spawn(uv_loop_t* loop, in uv_spawn() function
/third_party/libuv/src/win/
Dprocess.c938 int uv_spawn(uv_loop_t* loop, in uv_spawn() function
/third_party/libuv/include/
Duv.h1079 UV_EXTERN int uv_spawn(uv_loop_t* loop,
/third_party/libuv/include/uv_ndk/
Duv.h1065 UV_EXTERN int uv_spawn(uv_loop_t* loop,