Searched refs:uv_process_options_t (Results 1 – 19 of 19) sorted by relevance
/libuv/docs/src/ |
H A D | process.rst | 18 .. c:type:: uv_process_options_t 35 } uv_process_options_t; 180 .. c:member:: uv_exit_cb uv_process_options_t.exit_cb 184 .. c:member:: const char* uv_process_options_t.file 188 .. c:member:: char** uv_process_options_t.args 195 .. c:member:: char** uv_process_options_t.env 199 .. c:member:: const char* uv_process_options_t.cwd 203 .. c:member:: unsigned int uv_process_options_t.flags 208 .. c:member:: int uv_process_options_t.stdio_count 220 .. c:member:: uv_uid_t uv_process_options_t.uid [all …]
|
/libuv/src/unix/ |
H A D | process.c | 274 static void uv__process_child_init(const uv_process_options_t* options, in uv__process_child_init() 459 const uv_process_options_t* options) { in uv__spawn_set_posix_spawn_attrs() 531 const uv_process_options_t* options, in uv__spawn_set_posix_spawn_file_actions() 665 static int uv__spawn_resolve_and_spawn(const uv_process_options_t* options, in uv__spawn_resolve_and_spawn() 766 const uv_process_options_t* options, in uv__spawn_and_init_child_posix_spawn() 806 static int uv__spawn_and_init_child_fork(const uv_process_options_t* options, in uv__spawn_and_init_child_fork() 849 const uv_process_options_t* options, in uv__spawn_and_init_child() 955 const uv_process_options_t* options) { in uv_spawn()
|
/libuv/docs/code/detach/ |
H A D | main.c | 7 uv_process_options_t options;
|
/libuv/docs/src/guide/ |
H A 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 71 using fields in ``uv_process_options_t``. 76 Set ``uv_process_options_t.cwd`` to the corresponding directory. 81 ``uv_process_options_t.env`` is a null-terminated array of strings, each of the 88 Setting ``uv_process_options_t.flags`` to a bitwise OR of the following flags, 91 * ``UV_PROCESS_SETUID`` - sets the child's execution user ID to ``uv_process_options_t.uid``. 92 * ``UV_PROCESS_SETGID`` - sets the child's execution group ID to ``uv_process_options_t.gid``. 98 ``uv_process_options_t.args`` is done on Windows. Ignored on Unix. 186 ``uv_process_options_t``. First set the ``stdio_count`` field to the number of [all …]
|
/libuv/docs/code/spawn/ |
H A D | main.c | 8 uv_process_options_t options;
|
/libuv/docs/code/proc-streams/ |
H A D | main.c | 9 uv_process_options_t options;
|
/libuv/docs/code/cgi/ |
H A D | main.c | 9 uv_process_options_t options;
|
/libuv/test/ |
H A D | test-process-title.c | 87 uv_process_options_t options; in TEST_IMPL()
|
H A D | benchmark-spawn.c | 33 static uv_process_options_t options;
|
H A D | test-stdio-over-pipes.c | 32 static uv_process_options_t options;
|
H A D | test-ref.c | 403 uv_process_options_t options; in TEST_IMPL()
|
H A D | test-ipc.c | 283 uv_process_options_t options; in spawn_helper()
|
H A D | test-spawn.c | 48 static uv_process_options_t options; 1994 uv_process_options_t dummy_options = {0}; in TEST_IMPL()
|
/libuv/docs/code/multi-echo-server/ |
H A D | main.c | 11 uv_process_options_t options;
|
/libuv/src/win/ |
H A D | process-stdio.c | 170 const uv_process_options_t* options, in uv__stdio_create()
|
H A D | internal.h | 279 const uv_process_options_t* options,
|
H A D | process.c | 892 const uv_process_options_t* options) { in uv_spawn()
|
/libuv/include/ |
H A D | uv.h | 1090 } uv_process_options_t; typedef 1160 const uv_process_options_t* options);
|
/libuv/ |
H A D | ChangeLog | 5559 * include: make uv_process_options_t.cwd const (Ben Noordhuis) 5704 * include: uv_spawn takes const uv_process_options_t* (Ben Noordhuis)
|
Completed in 60 milliseconds