Home
last modified time | relevance | path

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

/bootable/recovery/
Dadb_install.cpp85 pid_t child; in apply_from_adb() local
86 if ((child = fork()) == 0) { in apply_from_adb()
99 if (waitpid(child, &status, WNOHANG) != 0) { in apply_from_adb()
112 kill(child, SIGKILL); in apply_from_adb()
129 waitpid(child, &status, 0); in apply_from_adb()
Droots.cpp166 pid_t child; in exec_cmd() local
167 if ((child = vfork()) == 0) { in exec_cmd()
171 waitpid(child, &status, 0); in exec_cmd()
Drecovery.cpp1136 pid_t child; in apply_from_sdcard() local
1137 if ((child = fork()) == 0) { in apply_from_sdcard()
1149 if (waitpid(child, &status, WNOHANG) == -1) { in apply_from_sdcard()
1163 kill(child, SIGKILL); in apply_from_sdcard()
1179 waitpid(child, &status, 0); in apply_from_sdcard()
/bootable/recovery/updater/
Dinstall.cpp283 pid_t child; in exec_cmd() local
284 if ((child = vfork()) == 0) { in exec_cmd()
288 waitpid(child, &status, 0); in exec_cmd()
1318 pid_t child = fork(); in RunProgramFn() local
1319 if (child == 0) { in RunProgramFn()
1325 waitpid(child, &status, 0); in RunProgramFn()