Home | History | Annotate | Download | only in ioshark

Lines Matching refs:pid

23 # about, breaks up the ftrace file into one file per pid.
25 # Output : Multiple fstrace.pid files.
41 awk -v pid=$i '{ if (pid == $7) print $0}' foo > fstrace.$i
52 # The output of this function is a set of parsed_input_trace.<pid>
62 # Get the pid from the strace filename (pid is the extension)
63 pid=${stracefile##*.}
64 process_strace $stracefile foo.$pid
65 if ! [ -s foo.$pid ]; then
66 rm foo.$pid
74 if [ -f fstrace.$pid ]; then
75 fgrep mmap foo.$pid > bar
85 grep -w $j fstrace.$pid > foobar
87 sort foo.$pid foobar >> footemp
93 mv footemp parsed_input_trace.$pid
95 mv foo.$pid parsed_input_trace.$pid
98 mv foo.$pid parsed_input_trace.$pid
102 mv foo.$pid parsed_input_trace.$pid
104 echo compiling parsed_input_trace.$pid
105 compile_ioshark parsed_input_trace.$pid $pid.wl
106 rm parsed_input_trace.$pid
107 rm -f foo.$pid