Lines Matching full:awk

62     grep -F TotalTime "$infile" | awk '{print $2}' | computestats
66 grep -F cpu-cycles "$infile" | awk '{print $1}' | sed s/,//g | computestats
70 grep -F 'Total CPU util' "$infile" | awk '{print $5}' | computestatsf
72 grep -F 'User CPU util' "$infile" | awk '{print $5}' | computestatsf
74 grep -F 'Sys CPU util' "$infile" | awk '{print $5}' | computestatsf
78 grep -F instructions "$infile" | awk '{print $1}' | sed s/,//g | computestats
81 grep -F instructions "$infile" | awk '{print $4}' | sed s/,//g | computestatsf
84 grep -F branch-misses "$infile" | awk '{print $1}' | sed s/,//g | computestats
87 grep -F context-switches "$infile" | awk '{print $1}' | sed s/,//g | computestats
90 grep -F page-faults "$infile" | awk '{print $1}' | sed s/,//g | computestats
96 grep -F KB "$infile" | grep system | awk '{print $5}' | computestats
99 grep -F IOwait "$infile" | awk '{print $3}' | computestatsf
102 grep -F 'Device util' "$infile" | awk '{print $4}' | computestatsf
257 …evice=`$adb shell ls -l /dev/block/platform/soc/*ufs*/by-name/system$suffix | awk '{ print $10 }' `
259 # vendor_block_device=`$adb shell df /vendor | grep -v Filesystem | awk '{print $1}' `
261 # system_block_device=`echo $system_block_device | awk 'BEGIN { FS ="/" } ; { print $4 }' `
262 # vendor_block_device=`echo $vendor_block_device | awk 'BEGIN { FS ="/" } ; { print $4 }' `
279 …evice=`$adb shell ls -l /dev/block/platform/soc/*ufs*/by-name/system$suffix | awk '{ print $10 }' `
281 # vendor_block_device=`$adb shell df /vendor | grep -v Filesystem | awk '{print $1}' `
283 # system_block_device=`echo $system_block_device | awk 'BEGIN { FS ="/" } ; { print $4 }' `
284 # vendor_block_device=`echo $vendor_block_device | awk 'BEGIN { FS ="/" } ; { print $4 }' `
294 …b shell 'find /dev/block/platform -name by-name | xargs ls -l' | grep system | awk '{ print $10 }')
296 system_block_device=$(echo "$system_block_device" | awk 'BEGIN { FS ="/" } ; { print $4 }')
299 …b shell 'find /dev/block/platform -name by-name | xargs ls -l' | grep vendor | awk '{ print $10 }')
301 vendor_block_device=$(echo "$vendor_block_device" | awk 'BEGIN { FS ="/" } ; { print $4 }')
306 system_block_device=$($adb shell ls -l /dev/block/by-name/system | awk '{ print $10 }')
307 system_block_device=$(echo "$system_block_device" | awk 'BEGIN { FS ="/" } ; { print $4 }')
328 BEFORE_RD_IOS_SYSTEM=$(echo "$system" | awk '{ print $4 }')
329 BEFORE_RD_SECTORS_SYSTEM=$(echo "$system" | awk '{ print $6 }')
332 user_ticks_before=$(echo "$procstat" | awk '{ print ($2 + $3) }')
333 sys_ticks_before=$(echo "$procstat" | awk '{ print ($4 + $7 + $8) }')
334 cpubusy_ticks_before=$(echo "$procstat" | awk '{ print ($2 + $3 + $4 + $7 + $8) }')
335 iowait_ticks_before=$(echo "$procstat" | awk '{ print $6 }')
336 total_ticks_before=$(echo "$procstat" | awk '{ print ($2 + $3 + $4 + $5 + $7 + $8) }')
339 uptime_before_ms=$(echo "$uptime" | awk '{ print ($1 * 1000) }')
340 device_util_before_ms=$(echo "$system" | awk '{ print ($13) }')
348 AFTER_RD_IOS_SYSTEM=$(echo "$system" | awk '{ print $4 }')
349 AFTER_RD_SECTORS_SYSTEM=$(echo "$system" | awk '{ print $6 }')
352 user_ticks_after=$(echo "$procstat" | awk '{ print ($2 + $3) }')
353 sys_ticks_after=$(echo "$procstat" | awk '{ print ($4 + $7 + $8) }')
354 cpubusy_ticks_after=$(echo "$procstat" | awk '{ print ($2 + $3 + $4 + $7 + $8) }')
355 iowait_ticks_after=$(echo "$procstat" | awk '{ print $6 }')
356 total_ticks_after=$(echo "$procstat" | awk '{ print ($2 + $3 + $4 + $5 + $7 + $8) }')
359 uptime_after_ms=$(echo "$uptime" | awk '{ print ($1 * 1000) }')
360 device_util_after_ms=$(echo "$system" | awk '{ print ($13) }')
371 …before" "$iowait_ticks_after" "$total_ticks_before" "$total_ticks_after" | awk '{ printf "IOwait =…
372 …efore_ms" "$device_util_after_ms" "$uptime_before_ms" "$uptime_after_ms" | awk '{ printf "Device u…
373 …s_after" "$user_ticks_before" "$total_ticks_after" "$total_ticks_before" | awk '{ printf "User CPU…
374 …ks_after" "$sys_ticks_before" "$total_ticks_after" "$total_ticks_before" | awk '{ printf "Sys CPU …
375 …fter" "$cpubusy_ticks_before" "$total_ticks_after" "$total_ticks_before" | awk '{ printf "Total CP…