Home | History | Annotate | Download | only in zygote

Lines Matching refs:helper

65 void KillAndReap(pid_t pid, ZygoteForkDelegate* helper) {
66 if (helper) {
67 // Helper children may be forked in another PID namespace, so |pid| might
72 LOG(WARNING) << "Unable to kill or reap helper children";
257 // For processes from the helper, send a GetTerminationStatus request
349 ZygoteForkDelegate* helper = NULL;
354 helper = *i;
361 if (helper) {
370 pid = helper->Fork(process_type, fds, channel_id);
440 KillAndReap(pid, helper);
444 // If we're not using a helper, send the PID back to the child process.
445 if (!helper) {
449 KillAndReap(pid, helper);
460 process_info_map_[real_pid].started_from_helper = helper;