Home
last modified time | relevance | path

Searched refs:uv_process_options_t (Results 1 – 25 of 28) sorted by relevance

12

/third_party/libuv/docs/src/
Dprocess.rst18 .. 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/
Dprocess.c256 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/
Dprocess.c256 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/
Dprocesses.rst41 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/
Dmain.c7 uv_process_options_t options;
/third_party/libuv/docs/code/spawn/
Dmain.c8 uv_process_options_t options;
/third_party/node/src/
Dprocess_wrap.cc104 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()
Dspawn_sync.h211 uv_process_options_t uv_process_options_;
/third_party/libuv/docs/code/proc-streams/
Dmain.c9 uv_process_options_t options;
/third_party/libuv/test/
Dtest-process-title.c87 uv_process_options_t options; in TEST_IMPL()
Dbenchmark-spawn.c33 static uv_process_options_t options;
Dtest-stdio-over-pipes.c32 static uv_process_options_t options;
Dtest-ref.c403 uv_process_options_t options; in TEST_IMPL()
Dtest-ipc.c283 uv_process_options_t options; in spawn_helper()
Dtest-spawn.c45 static uv_process_options_t options;
1819 uv_process_options_t dummy_options = {0}; in TEST_IMPL()
/third_party/libuv/docs/code/cgi/
Dmain.c9 uv_process_options_t options;
/third_party/libuv/docs/code/multi-echo-server/
Dmain.c11 uv_process_options_t options;
/third_party/libuv/src/win/
Dprocess-stdio.c170 const uv_process_options_t* options, in uv__stdio_create()
Dinternal.h291 const uv_process_options_t* options,
Dprocess.c940 const uv_process_options_t* options) { in uv_spawn()
/third_party/node/deps/uv/src/win/
Dprocess-stdio.c170 const uv_process_options_t* options, in uv__stdio_create()
Dinternal.h289 const uv_process_options_t* options,
/third_party/libuv/include/
Duv.h1018 } uv_process_options_t; typedef
1081 const uv_process_options_t* options);
/third_party/node/deps/uv/include/
Duv.h1018 } uv_process_options_t; typedef
1081 const uv_process_options_t* options);
/third_party/libuv/include/uv_ndk/
Duv.h1004 } uv_process_options_t; typedef
1067 const uv_process_options_t* options);

12