Searched refs:child (Results 1 – 4 of 4) sorted by relevance
/bootable/recovery/install/ |
D | fuse_install.cpp | 154 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()
|
D | adb_install.cpp | 291 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/ |
D | updater_runtime.cpp | 161 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/ |
D | roots.cpp | 96 pid_t child; in exec_cmd() local 97 if ((child = fork()) == 0) { in exec_cmd() 103 waitpid(child, &status, 0); in exec_cmd()
|