/third_party/libuv/test/ |
D | test-spawn.c | 63 static void exit_cb(uv_process_t* process, in exit_cb() function 156 static void init_process_options(char* test, uv_exit_cb exit_cb) { in init_process_options() argument 168 options.exit_cb = exit_cb; in init_process_options() 246 init_process_options("spawn_helper1", exit_cb); in TEST_IMPL() 264 init_process_options("spawn_helper1", exit_cb); in TEST_IMPL() 285 init_process_options("spawn_helper2", exit_cb); in TEST_IMPL() 323 init_process_options("spawn_helper2", exit_cb); in TEST_IMPL() 377 init_process_options("spawn_helper6", exit_cb); in TEST_IMPL() 434 init_process_options("spawn_helper6", exit_cb); in TEST_IMPL() 501 init_process_options("spawn_helper6", exit_cb); in TEST_IMPL() [all …]
|
D | test-process-title.c | 79 static void exit_cb(uv_process_t* process, int64_t status, int signo) { in exit_cb() function 118 options.exit_cb = exit_cb; in TEST_IMPL()
|
D | test-stdio-over-pipes.c | 50 static void exit_cb(uv_process_t* process, in exit_cb() function 63 static void init_process_options(char* test, uv_exit_cb exit_cb) { in init_process_options() argument 72 options.exit_cb = exit_cb; in init_process_options() 126 init_process_options("stdio_over_pipes_helper", exit_cb); in test_stdio_over_pipes()
|
D | benchmark-spawn.c | 67 static void exit_cb(uv_process_t* process, in exit_cb() function 115 options.exit_cb = exit_cb; in spawn()
|
D | test-ipc.c | 89 static void exit_cb(uv_process_t* process, in exit_cb() function 306 options.exit_cb = exit_cb; in spawn_helper()
|
D | test-ref.c | 418 options.exit_cb = NULL; in TEST_IMPL()
|
/third_party/libuv/docs/code/detach/ |
D | main.c | 17 options.exit_cb = NULL; in main()
|
/third_party/libuv/docs/code/spawn/ |
D | main.c | 23 options.exit_cb = on_exit; in main()
|
/third_party/jerryscript/jerry-main/ |
D | main-unix.c | 503 const char *exit_cb = NULL; in main() local 549 exit_cb = cli_consume_string (&cli_state); in main() 968 if (exit_cb != NULL) in main() 971 jerry_value_t fn_str = jerry_create_string ((jerry_char_t *) exit_cb); in main()
|
/third_party/libuv/docs/code/proc-streams/ |
D | main.c | 38 options.exit_cb = on_exit; in main()
|
/third_party/node/deps/uv/src/unix/ |
D | process.c | 145 if (process->exit_cb == NULL) in uv__wait_children() 156 process->exit_cb(process, exit_status, term_signal); in uv__wait_children() 1018 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/libuv/src/unix/ |
D | process.c | 145 if (process->exit_cb == NULL) in uv__wait_children() 156 process->exit_cb(process, exit_status, term_signal); in uv__wait_children() 1018 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/libuv/src/win/ |
D | process.c | 142 handle->exit_cb = NULL; in uv__process_init() 899 if (handle->exit_cb) { in uv__process_proc_exit() 900 handle->exit_cb(handle, exit_code, handle->exit_signal); in uv__process_proc_exit() 952 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/node/deps/uv/src/win/ |
D | process.c | 142 handle->exit_cb = NULL; in uv__process_init() 899 if (handle->exit_cb) { in uv__process_proc_exit() 900 handle->exit_cb(handle, exit_code, handle->exit_signal); in uv__process_proc_exit() 952 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/libuv/docs/code/cgi/ |
D | main.c | 37 options.exit_cb = cleanup_handles; in invoke_cgi_script()
|
/third_party/libuv/docs/code/multi-echo-server/ |
D | main.c | 88 worker->options.exit_cb = close_process_handle; in setup_workers()
|
/third_party/libuv/docs/src/ |
D | process.rst | 25 uv_exit_cb exit_cb; 173 .. c:member:: uv_exit_cb uv_process_options_t.exit_cb
|
/third_party/node/src/ |
D | process_wrap.cc | 157 options.exit_cb = OnExit; in Spawn()
|
D | spawn_sync.cc | 498 uv_process_options_.exit_cb = ExitCallback; in TryInitializeAndRunLoop()
|
/third_party/libuv/include/ |
D | uv.h | 976 uv_exit_cb exit_cb; /* Called after the process exits. */ member 1074 uv_exit_cb exit_cb; member
|
/third_party/node/deps/uv/include/ |
D | uv.h | 976 uv_exit_cb exit_cb; /* Called after the process exits. */ member 1074 uv_exit_cb exit_cb; member
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 962 uv_exit_cb exit_cb; /* Called after the process exits. */ member 1060 uv_exit_cb exit_cb; member
|
/third_party/node/deps/uv/ |
D | ChangeLog | 1568 * test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno)
|
/third_party/libuv/ |
D | ChangeLog | 1568 * test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno)
|