| /src/external/mit/libuv/dist/docs/code/detach/ |
| main.c | 23 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mit/libuv/dist/docs/code/spawn/ |
| main.c | 28 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mit/libuv/dist/test/ |
| test-spawn.c | 193 r = uv_spawn(uv_default_loop(), &process, &options); 213 r = uv_spawn(uv_default_loop(), &process, &options); 253 ASSERT_OK(uv_spawn(uv_default_loop(), &process, &options)); 269 r = uv_spawn(uv_default_loop(), &process, &options); 297 r = uv_spawn(uv_default_loop(), &process, &options); 341 r = uv_spawn(uv_default_loop(), &process, &options); 397 r = uv_spawn(uv_default_loop(), &process, &options); 459 r = uv_spawn(uv_default_loop(), &process, &options); 536 r = uv_spawn(uv_default_loop(), &process, &options); 603 r = uv_spawn(uv_default_loop(), &process, &options) [all...] |
| test-process-title.c | 120 ASSERT_OK(uv_spawn(uv_default_loop(), &process, &options));
|
| benchmark-spawn.c | 125 r = uv_spawn(loop, &process, &options);
|
| test-stdio-over-pipes.c | 142 r = uv_spawn(loop, &process, &options);
|
| test-ref.c | 420 r = uv_spawn(uv_default_loop(), &h, &options);
|
| test-ipc.c | 317 r = uv_spawn(uv_default_loop(), process, &options);
|
| /src/external/mit/libuv/dist/docs/code/proc-streams/ |
| main.c | 43 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mit/libuv/dist/docs/code/cgi/ |
| main.c | 44 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mit/libuv/dist/docs/code/multi-echo-server/ |
| main.c | 92 uv_spawn(loop, &worker->req, &worker->options);
|
| /src/external/mit/libuv/dist/src/unix/ |
| process.c | 181 * zero on success. See also the cleanup section in uv_spawn(). 966 int uv_spawn(uv_loop_t* loop, function
|
| /src/external/mit/libuv/dist/src/win/ |
| process.c | 74 * it contains are killed. All processes created with uv_spawn that are not 83 * from job control (which uv_spawn doesn't, either). 890 int uv_spawn(uv_loop_t* loop, function
|
| /src/external/mit/libuv/dist/include/ |
| uv.h | 1025 /* uv_spawn() options. */ 1080 * Various flags that control how uv_spawn() behaves. See the definition of 1098 * windows; uv_spawn() will fail and set the error to UV_ENOTSUP. 1111 * will cause uv_spawn() to fail. 1117 * flag will cause uv_spawn() to fail. 1170 UV_EXTERN int uv_spawn(uv_loop_t* loop,
|