Lines Matching refs:zygote_pids
539 def handle_zygote_event(zygote_pids, events, event, line): argument
543 if len(zygote_pids) == 2:
544 if pid == zygote_pids[1]: # secondary
546 elif len(zygote_pids) == 1:
547 if zygote_pids[0] != pid: # new pid, need to decide if old ones were secondary
548 primary_pid = min(pid, zygote_pids[0])
549 secondary_pid = max(pid, zygote_pids[0])
550 zygote_pids.pop()
551 zygote_pids.append(primary_pid)
552 zygote_pids.append(secondary_pid)
568 zygote_pids.append(pid)
645 zygote_pids = []
673 handle_zygote_event(zygote_pids, events, event, line)