Home
last modified time | relevance | path

Searched refs:child (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/install/
Dfuse_install.cpp154 pid_t child; in InstallWithFuseFromPath() local
155 if ((child = fork()) == 0) { in InstallWithFuseFromPath()
166 if (waitpid(child, &status, WNOHANG) == -1) { in InstallWithFuseFromPath()
180 kill(child, SIGKILL); in InstallWithFuseFromPath()
198 waitpid(child, &status, 0); in InstallWithFuseFromPath()
Dadb_install.cpp291 pid_t child = fork(); in CreateMinadbdServiceAndExecuteCommands() local
292 if (child == -1) { in CreateMinadbdServiceAndExecuteCommands()
296 if (child == 0) { in CreateMinadbdServiceAndExecuteCommands()
320 std::thread listener_thread(ListenAndExecuteMinadbdCommands, ui, child, in CreateMinadbdServiceAndExecuteCommands()
327 waitpid(child, &status, 0); in CreateMinadbdServiceAndExecuteCommands()
/bootable/deprecated-ota/updater/
Dupdater_runtime.cpp161 pid_t child = is_vfork ? vfork() : fork(); in RunProgram() local
162 if (child == 0) { in RunProgram()
169 waitpid(child, &status, 0); in RunProgram()
/bootable/recovery/recovery_utils/
Droots.cpp96 pid_t child; in exec_cmd() local
97 if ((child = fork()) == 0) { in exec_cmd()
103 waitpid(child, &status, 0); in exec_cmd()