Home | History | Annotate | Download | only in ioblame

Lines Matching refs:cat

97 	DISKSTATS=`adb shell 'cat /proc/diskstats' | fgrep -w $block_device `
107 F2FS_GC_SEGMENTS_BEFORE=`adb shell 'cat /sys/kernel/debug/f2fs/status' | grep segments | egrep 'data|node' | awk '{ segments += $5 } END { print segments }' `
113 DISKSTATS=`adb shell 'cat /proc/diskstats' | fgrep -w $block_device `
122 F2FS_GC_SEGMENTS_AFTER=`adb shell 'cat /sys/kernel/debug/f2fs/status' | grep segments | egrep 'data|node' | awk '{ segments += $5 } END { print segments }' `
184 adb shell cat /sys/kernel/debug/tracing/trace_pipe > trace_saved
225 cat foo0 | sed -n -e 's/^.*android_fs_dataread_start //p' > foo1
235 cat $infile | sed -n -e 's/^.*android_fs_writepages //p' > foo1
247 cat foo0 | sed -n -e 's/^.*android_fs_datawrite_start //p' > foo1
256 cat $infile | sed s/,//g | sort -d -k2,2 -k8,8 > foo1
260 cat $infile | awk '{ print $2 }' > foo1
261 cat foo1 | uniq > uniq_files
266 cat $infile | sed s/,//g | sort -d -k2,2 > foo1
270 cat $infile | awk '{ print $2 }' > foo1
271 cat foo1 | uniq > uniq_files
277 cat $1 | awk '{ print $8 }' > foo1
278 cat foo1 | uniq > uniq_pids_byfile
284 cat $infile | sed s/,//g | sort -d -k8,8 -k2,2 > foo1
288 cat $infile | awk '{ print $8 }' > foo1
289 cat foo1 | uniq > uniq_pids
295 cat $1 | awk '{ print $2 }' > foo1
296 cat foo1 | uniq > uniq_files_bypid
333 for i in `cat uniq_files`
345 for j in `cat uniq_pids_byfile`
368 for i in `cat uniq_files`
375 total_file_KB=`cat subtrace | awk '{ bytes += $4 } END { print bytes }' `
391 list_of_pids=`cat uniq_pids`
407 list_of_files=`cat uniq_files_bypid`
479 debug_FileKB_rd=`cat $infile | awk '{ bytes += $6 } END { printf "%d", bytes/1024 }' `