/third_party/libuv/test/ |
H A D | test-spawn.c | 66 static void exit_cb(uv_process_t* process, in exit_cb() function 69 printf("exit_cb\n"); in exit_cb() 89 printf("exit_cb\n"); in kill_cb() 159 static void init_process_options(char* test, uv_exit_cb exit_cb) { in init_process_options() argument 171 options.exit_cb = exit_cb; in init_process_options() 249 init_process_options("spawn_helper1", exit_cb); in TEST_IMPL() 267 init_process_options("spawn_helper1", exit_cb); in TEST_IMPL() 288 init_process_options("spawn_helper2", exit_cb); in TEST_IMPL() 326 init_process_options("spawn_helper2", exit_cb); in TEST_IMPL() [all...] |
H A 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()
|
H A 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()
|
H A D | test-stdio-over-pipes.c | 50 static void exit_cb(uv_process_t* process, in exit_cb() function 53 printf("exit_cb\n"); in exit_cb() 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()
|
H A D | test-ipc.c | 89 static void exit_cb(uv_process_t* process, in exit_cb() function 92 printf("exit_cb\n"); in exit_cb() 306 options.exit_cb = exit_cb; in spawn_helper()
|
H A D | test-ref.c | 418 options.exit_cb = NULL; in TEST_IMPL()
|
/third_party/libuv/docs/code/spawn/ |
H A D | main.c | 23 options.exit_cb = on_exit; in main()
|
/third_party/libuv/docs/code/detach/ |
H A D | main.c | 17 options.exit_cb = NULL; in main()
|
/third_party/jerryscript/jerry-main/ |
H A 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/node/deps/uv/src/unix/ |
H A 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/ |
H A D | process.c | 133 handle->exit_cb = NULL; in uv__process_init() 870 if (handle->exit_cb) { in uv__process_proc_exit() 871 handle->exit_cb(handle, exit_code, handle->exit_signal); in uv__process_proc_exit() 924 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/node/deps/uv/src/win/ |
H A 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/proc-streams/ |
H A D | main.c | 38 options.exit_cb = on_exit; in main()
|
/third_party/libuv/docs/code/cgi/ |
H A D | main.c | 37 options.exit_cb = cleanup_handles; in invoke_cgi_script()
|
/third_party/libuv/src/unix/ |
H A D | process.c | 166 if (process->exit_cb == NULL) in uv__wait_children() 177 process->exit_cb(process, exit_status, term_signal); in uv__wait_children() 1044 process->exit_cb = options->exit_cb; in uv_spawn()
|
/third_party/libuv/docs/code/multi-echo-server/ |
H A D | main.c | 88 worker->options.exit_cb = close_process_handle; in setup_workers()
|
/third_party/node/src/ |
H A D | process_wrap.cc | 157 options.exit_cb = OnExit; in Spawn()
|
H A D | spawn_sync.cc | 498 uv_process_options_.exit_cb = ExitCallback; in TryInitializeAndRunLoop()
|
/third_party/libuv/include/ |
H A D | uv.h | 1034 uv_exit_cb exit_cb; /* Called after the process exits. */ member 1139 uv_exit_cb exit_cb; member
|
/third_party/libuv/include/uv_ndk/ |
H A 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/include/ |
H A D | uv.h | 976 uv_exit_cb exit_cb; /* Called after the process exits. */ member 1074 uv_exit_cb exit_cb; member
|