Home
last modified time | relevance | path

Searched refs:uv_process_t (Results 1 – 25 of 29) sorted by relevance

12

/libuv/docs/code/spawn/
H A Dmain.c7 uv_process_t child_req;
10 void on_exit(uv_process_t *req, int64_t exit_status, int term_signal) { in on_exit()
/libuv/docs/code/proc-streams/
H A Dmain.c8 uv_process_t child_req;
11 void on_exit(uv_process_t *req, int64_t exit_status, int term_signal) { in on_exit()
/libuv/docs/code/cgi/
H A Dmain.c8 uv_process_t child_req;
11 void cleanup_handles(uv_process_t *req, int64_t exit_status, int term_signal) { in cleanup_handles()
/libuv/test/
H A Dtest-process-title.c79 static void exit_cb(uv_process_t* process, int64_t status, int signo) { in exit_cb()
88 uv_process_t process; in TEST_IMPL()
H A Dbenchmark-spawn.c32 static uv_process_t process;
67 static void exit_cb(uv_process_t* process, in exit_cb()
H A Dtest-ipc-heavy-traffic-deadlock-bug.c29 uv_process_t* process,
135 uv_process_t process; in TEST_IMPL()
H A Dbenchmark-sizes.c41 fprintf(stderr, "uv_process_t: %u bytes\n", (unsigned int) sizeof(uv_process_t)); in BENCHMARK_IMPL()
H A Dtest-stdio-over-pipes.c50 static void exit_cb(uv_process_t* process, in exit_cb()
121 uv_process_t process; in test_stdio_over_pipes()
H A Dtest-ipc-send-recv.c30 uv_process_t* process,
173 uv_process_t process; in run_test()
H A Dtest-spawn.c46 static uv_process_t process;
66 static void exit_cb(uv_process_t* process, in exit_cb()
77 static void fail_cb(uv_process_t* process, in fail_cb()
84 static void kill_cb(uv_process_t* process, in kill_cb()
117 static void detach_failure_cb(uv_process_t* process, in detach_failure_cb()
1607 static void exit_cb_unexpected(uv_process_t* process, in exit_cb_unexpected()
1883 uv_process_t child_req; in TEST_IMPL()
1995 uv_process_t dummy_processes[100]; in TEST_IMPL()
H A Dtest-ipc.c89 static void exit_cb(uv_process_t* process, in exit_cb()
281 uv_process_t* process, in spawn_helper()
418 uv_process_t process; in run_ipc_test()
H A Dtest-ref.c406 uv_process_t h; in TEST_IMPL()
/libuv/docs/src/
H A Dprocess.rst4 :c:type:`uv_process_t` --- Process handle
14 .. c:type:: uv_process_t
37 .. c:type:: void (*uv_exit_cb)(uv_process_t*, int64_t exit_status, int term_signal)
173 .. c:member:: int uv_process_t.pid
257 .. c:function:: int uv_spawn(uv_loop_t* loop, uv_process_t* handle, const uv_process_options_t* opt…
275 .. c:function:: int uv_process_kill(uv_process_t* handle, int signum)
285 .. c:function:: uv_pid_t uv_process_get_pid(const uv_process_t* handle)
/libuv/docs/code/multi-echo-server/
H A Dmain.c10 uv_process_t req;
21 void close_process_handle(uv_process_t *req, int64_t exit_status, int term_signal) { in close_process_handle()
/libuv/docs/code/detach/
H A Dmain.c6 uv_process_t child_req;
/libuv/src/win/
H A Dprocess.c130 static void uv__process_init(uv_loop_t* loop, uv_process_t* handle) { in uv__process_init()
804 uv_process_t* process = (uv_process_t*) data; in exit_wait_callback()
819 void uv__process_proc_exit(uv_loop_t* loop, uv_process_t* handle) { in uv__process_proc_exit()
857 void uv__process_close(uv_loop_t* loop, uv_process_t* handle) { in uv__process_close()
878 void uv__process_endgame(uv_loop_t* loop, uv_process_t* handle) { in uv__process_endgame()
891 uv_process_t* process, in uv_spawn()
1354 int uv_process_kill(uv_process_t* process, int signum) { in uv_process_kill()
H A Dinternal.h227 void uv__process_proc_exit(uv_loop_t* loop, uv_process_t* handle);
228 void uv__process_close(uv_loop_t* loop, uv_process_t* handle);
229 void uv__process_endgame(uv_loop_t* loop, uv_process_t* handle);
H A Dhandle.c132 uv__process_close(loop, (uv_process_t*) handle); in uv_close()
H A Dhandle-inl.h148 uv__process_endgame(loop, (uv_process_t*) handle); in uv__process_endgames()
H A Dreq-inl.h201 uv__process_proc_exit(loop, (uv_process_t*) req->data); in uv__process_reqs()
/libuv/src/unix/
H A Dprocess.c102 uv_process_t* process; in uv__wait_children()
117 process = uv__queue_data(q, uv_process_t, queue); in uv__wait_children()
156 process = uv__queue_data(q, uv_process_t, queue); in uv__wait_children()
954 uv_process_t* process, in uv_spawn()
1083 int uv_process_kill(uv_process_t* process, int signum) { in uv_process_kill()
1103 void uv__process_close(uv_process_t* handle) { in uv__process_close()
H A Dkqueue.c168 uv_process_t* process; in uv__io_poll()
342 process = uv__queue_data(q, uv_process_t, queue); in uv__io_poll()
/libuv/src/
H A Duv-data-getter-setters.c89 uv_pid_t uv_process_get_pid(const uv_process_t* proc) { in uv_process_get_pid()
/libuv/include/
H A Duv.h233 typedef struct uv_process_s uv_process_t; typedef
341 typedef void (*uv_exit_cb)(uv_process_t*, int64_t exit_status, int term_signal);
1159 uv_process_t* handle,
1161 UV_EXTERN int uv_process_kill(uv_process_t*, int signum);
1163 UV_EXTERN uv_pid_t uv_process_get_pid(const uv_process_t*);
/libuv/docs/src/guide/
H A Dprocesses.rst43 The ``uv_process_t`` struct only acts as the handle, all options are set via
50 After the call to ``uv_spawn``, ``uv_process_t.pid`` will contain the process
130 which accepts the ``uv_process_t`` watcher as the first argument, rather than

Completed in 44 milliseconds

12