Home
last modified time | relevance | path

Searched refs:zygote_pids (Results 1 – 3 of 3) sorted by relevance

/system/extras/ioshark/
Dcollect-straces.sh67 adb shell 'ps' | grep zygote > zygote_pids
69 fgrep -v grep zygote_pids > bar
70 mv bar zygote_pids
71 pid1=`grep -w zygote zygote_pids | awk '{print $2}' `
72 pid2=`grep -w zygote64 zygote_pids | awk '{print $2}' `
73 rm -f zygote_pids
Dcollect-straces-ftraces.sh166 adb shell 'ps' | grep zygote > zygote_pids
167 fgrep -v grep zygote_pids > bar
168 mv bar zygote_pids
169 pid1=`grep -w zygote zygote_pids | awk '{print $2}' `
170 pid2=`grep -w zygote64 zygote_pids | awk '{print $2}' `
171 rm -f zygote_pids
/system/extras/boottime_tools/bootanalyze/
Dbootanalyze.py534 def handle_zygote_event(zygote_pids, events, event, line): argument
538 if len(zygote_pids) == 2:
539 if pid == zygote_pids[1]: # secondary
541 elif len(zygote_pids) == 1:
542 if zygote_pids[0] != pid: # new pid, need to decide if old ones were secondary
543 primary_pid = min(pid, zygote_pids[0])
544 secondary_pid = max(pid, zygote_pids[0])
545 zygote_pids.pop()
546 zygote_pids.append(primary_pid)
547 zygote_pids.append(secondary_pid)
[all …]