Home
last modified time | relevance | path

Searched refs:child (Results 1 – 3 of 3) 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.cpp158 pid_t child; in exec_cmd() local
159 if ((child = vfork()) == 0) { in exec_cmd()
163 waitpid(child, &status, 0); in exec_cmd()
/bootable/recovery/updater/
Dinstall.c253 pid_t child; in exec_cmd() local
254 if ((child = vfork()) == 0) { in exec_cmd()
258 waitpid(child, &status, 0); in exec_cmd()
1298 pid_t child = fork(); in RunProgramFn() local
1299 if (child == 0) { in RunProgramFn()
1305 waitpid(child, &status, 0); in RunProgramFn()