Searched refs:uv_process_options_t (Results 1 – 25 of 28) sorted by relevance
12
/third_party/libuv/docs/src/ |
D | process.rst | 18 .. c:type:: uv_process_options_t 35 } uv_process_options_t; 39 Type definition for callback passed in :c:type:`uv_process_options_t` which 45 Flags to be set on the flags field of :c:type:`uv_process_options_t`. 173 .. c:member:: uv_exit_cb uv_process_options_t.exit_cb 177 .. c:member:: const char* uv_process_options_t.file 181 .. c:member:: char** uv_process_options_t.args 188 .. c:member:: char** uv_process_options_t.env 192 .. c:member:: const char* uv_process_options_t.cwd 196 .. c:member:: unsigned int uv_process_options_t.flags [all …]
|
/third_party/node/deps/uv/src/unix/ |
D | process.c | 256 static void uv__process_child_init(const uv_process_options_t* options, in uv__process_child_init() 442 const uv_process_options_t* options) { in uv__spawn_set_posix_spawn_attrs() 514 const uv_process_options_t* options, in uv__spawn_set_posix_spawn_file_actions() 648 static int uv__spawn_resolve_and_spawn(const uv_process_options_t* options, in uv__spawn_resolve_and_spawn() 749 const uv_process_options_t* options, in uv__spawn_and_init_child_posix_spawn() 789 static int uv__spawn_and_init_child_fork(const uv_process_options_t* options, in uv__spawn_and_init_child_fork() 832 const uv_process_options_t* options, in uv__spawn_and_init_child() 937 const uv_process_options_t* options) { in uv_spawn()
|
/third_party/libuv/src/unix/ |
D | process.c | 256 static void uv__process_child_init(const uv_process_options_t* options, in uv__process_child_init() 442 const uv_process_options_t* options) { in uv__spawn_set_posix_spawn_attrs() 514 const uv_process_options_t* options, in uv__spawn_set_posix_spawn_file_actions() 648 static int uv__spawn_resolve_and_spawn(const uv_process_options_t* options, in uv__spawn_resolve_and_spawn() 749 const uv_process_options_t* options, in uv__spawn_and_init_child_posix_spawn() 789 static int uv__spawn_and_init_child_fork(const uv_process_options_t* options, in uv__spawn_and_init_child_fork() 832 const uv_process_options_t* options, in uv__spawn_and_init_child() 937 const uv_process_options_t* options) { in uv_spawn()
|
/third_party/libuv/docs/src/guide/ |
D | processes.rst | 41 uv_process_options_t options = {0}; 44 ``uv_process_options_t``. To simply launch a process, you need to set only the 69 using fields in ``uv_process_options_t``. 74 Set ``uv_process_options_t.cwd`` to the corresponding directory. 79 ``uv_process_options_t.env`` is a null-terminated array of strings, each of the 86 Setting ``uv_process_options_t.flags`` to a bitwise OR of the following flags, 89 * ``UV_PROCESS_SETUID`` - sets the child's execution user ID to ``uv_process_options_t.uid``. 90 * ``UV_PROCESS_SETGID`` - sets the child's execution group ID to ``uv_process_options_t.gid``. 96 ``uv_process_options_t.args`` is done on Windows. Ignored on Unix. 183 ``uv_process_options_t``. First set the ``stdio_count`` field to the number of [all …]
|
/third_party/libuv/docs/code/detach/ |
D | main.c | 7 uv_process_options_t options;
|
/third_party/libuv/docs/code/spawn/ |
D | main.c | 8 uv_process_options_t options;
|
/third_party/node/src/ |
D | process_wrap.cc | 104 uv_process_options_t* options) { in ParseStdioOptions() 154 uv_process_options_t options; in Spawn() 155 memset(&options, 0, sizeof(uv_process_options_t)); in Spawn()
|
D | spawn_sync.h | 211 uv_process_options_t uv_process_options_;
|
/third_party/libuv/docs/code/proc-streams/ |
D | main.c | 9 uv_process_options_t options;
|
/third_party/libuv/test/ |
D | test-process-title.c | 87 uv_process_options_t options; in TEST_IMPL()
|
D | benchmark-spawn.c | 33 static uv_process_options_t options;
|
D | test-stdio-over-pipes.c | 32 static uv_process_options_t options;
|
D | test-ref.c | 403 uv_process_options_t options; in TEST_IMPL()
|
D | test-ipc.c | 283 uv_process_options_t options; in spawn_helper()
|
D | test-spawn.c | 45 static uv_process_options_t options; 1819 uv_process_options_t dummy_options = {0}; in TEST_IMPL()
|
/third_party/libuv/docs/code/cgi/ |
D | main.c | 9 uv_process_options_t options;
|
/third_party/libuv/docs/code/multi-echo-server/ |
D | main.c | 11 uv_process_options_t options;
|
/third_party/libuv/src/win/ |
D | process-stdio.c | 170 const uv_process_options_t* options, in uv__stdio_create()
|
D | internal.h | 291 const uv_process_options_t* options,
|
D | process.c | 940 const uv_process_options_t* options) { in uv_spawn()
|
/third_party/node/deps/uv/src/win/ |
D | process-stdio.c | 170 const uv_process_options_t* options, in uv__stdio_create()
|
D | internal.h | 289 const uv_process_options_t* options,
|
/third_party/libuv/include/ |
D | uv.h | 1018 } uv_process_options_t; typedef 1081 const uv_process_options_t* options);
|
/third_party/node/deps/uv/include/ |
D | uv.h | 1018 } uv_process_options_t; typedef 1081 const uv_process_options_t* options);
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 1004 } uv_process_options_t; typedef 1067 const uv_process_options_t* options);
|
12