Searched refs:zygote_pids (Results 1 – 3 of 3) sorted by relevance
67 adb shell 'ps' | grep zygote > zygote_pids69 fgrep -v grep zygote_pids > bar70 mv bar zygote_pids71 pid1=`grep -w zygote zygote_pids | awk '{print $2}' `72 pid2=`grep -w zygote64 zygote_pids | awk '{print $2}' `73 rm -f zygote_pids
166 adb shell 'ps' | grep zygote > zygote_pids167 fgrep -v grep zygote_pids > bar168 mv bar zygote_pids169 pid1=`grep -w zygote zygote_pids | awk '{print $2}' `170 pid2=`grep -w zygote64 zygote_pids | awk '{print $2}' `171 rm -f zygote_pids
539 def handle_zygote_event(zygote_pids, events, event, line): argument543 if len(zygote_pids) == 2:544 if pid == zygote_pids[1]: # secondary546 elif len(zygote_pids) == 1:547 if zygote_pids[0] != pid: # new pid, need to decide if old ones were secondary548 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)[all …]