HomeSort by relevance Sort by last modified time
    Searched refs:awk (Results 51 - 75 of 576) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/ltp/testcases/commands/lsmod/
lsmod01.sh 26 lsmod_output=$(lsmod | awk '!/Module/{print $1, $2, $3}' | sort)
32 modules_output=$(awk '{print $1, $2, $3}' /proc/modules | sort)
  /external/swiftshader/third_party/LLVM/utils/
countloc.sh 13 # each file and then sums up and prints the total with awk.
34 ./utils/llvmdo -topdir "$TOPDIR" -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
  /external/zlib/
Android.mk 5 awk '{printf $$1}' > $@
  /external/elfutils/config/
Makefile.am 31 EXTRA_DIST = elfutils.spec.in known-dwarf.awk 10-default-yama-scope.conf
42 awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \
44 awk '\
  /external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
ftrace_set_ftrace_filter.sh 33 picked_module=$(lsmod | awk "{if (NR == $pick_one) {print \$1}}")
37 nr_functions=$(awk 'END{print NR}' $filter_file)
43 picked_function=$(awk "{if (NR == $pick_one) {print \$1}}" $filter_file)
54 nr_events=$(awk 'END{print NR}' $events_file)
56 picked_event=$(awk "{if (NR == $pick_one) {print \$0}}" $events_file)
108 trigger_name=$(echo $triggers | awk "{print \$$trigger_index}")
ftrace_tracing_cpumask.sh 59 mask=`echo $temp_mask | awk '{printf "%x",$0}'`
61 mask=$mask","`echo $temp_mask | awk '{printf "%x",$0}'`
76 mask=`echo $temp_mask | awk '{printf "%x",$0}'`
  /system/extras/app-launcher/
app-launcher 62 fgrep TotalTime $infile | awk '{print $2}' | computestats
66 fgrep cpu-cycles $infile | awk '{print $1}' | sed s/,//g | computestats
70 fgrep 'Total CPU util' $infile | awk '{print $5}' | computestatsf
72 fgrep 'User CPU util' $infile | awk '{print $5}' | computestatsf
74 fgrep 'Sys CPU util' $infile | awk '{print $5}' | computestatsf
78 fgrep instructions $infile | awk '{print $1}' | sed s/,//g | computestats
81 fgrep instructions $infile | awk '{print $4}' | sed s/,//g | computestatsf
84 fgrep branch-misses $infile | awk '{print $1}' | sed s/,//g | computestats
87 fgrep context-switches $infile | awk '{print $1}' | sed s/,//g | computestats
90 fgrep page-faults $infile | awk '{print $1}' | sed s/,//g | computestat
    [all...]
  /system/extras/ioshark/
collect-straces-ftraces.sh 17 awk -v begin="$begin_time" '{ printf "%f strace ", $1 - begin; $1=""; print $0}' bar > $2
34 awk '{ print $2, "ftrace", $3, $5, $7, $9, $13 }' bar > foo
35 #awk '{ s ="" ; for (i=2; i <= NF ; i++) s = s $i " "; print s}' bar > foo
38 awk '{print $7}' foo | sort | uniq > pidlist
41 awk -v pid=$i '{ if (pid == $7) print $0}' foo > fstrace.$i
78 awk '{ print $7 }' bar | sed 's/^[^<]*<//g' | sed 's/>,//g' > mapped_files
116 echo Killing `echo $ps_line | awk '{s = ""; for (i=8; i <= NF ; i++) s = s $i " "; print s}' `
117 kill `echo $ps_line | awk '{print $2}' `
121 echo Killing `echo $ps_line | awk '{s = ""; for (i=8; i <= NF ; i++) s = s $i " "; print s}' `
122 kill `echo $ps_line | awk '{print $2}'
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
jitter.sh 39 starttime=`awk 'BEGIN { print systime(); }' < /dev/null`
44 t=`awk -v s=$starttime 'BEGIN { print systime() - s; }' < /dev/null`
54 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN {
71 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN {
79 limit=`awk -v me=$me -v n=$n -v spinmax=$spinmax 'BEGIN {
  /external/libpng/scripts/
pnglibconf.mak 6 # given just 'awk', a C preprocessor and standard command line utilities
9 # the make command line (AWK='nawk' for example).
10 AWK = gawk
11 AWK = mawk
12 AWK = nawk
13 AWK = one-true-awk
14 AWK = awk # Crashes on SunOS 5.10 - use 'nawk'
38 $(AWK) -f "$(srcdir)/scripts/dfn.awk" out="pnglibconf.tmp" pnglibconf.out 1>&
    [all...]
  /system/extras/ioblame/
ioblame.sh 89 block_device=`adb shell 'find /dev/block/platform -name by-name | xargs ls -l' | grep system | awk '{ print $10 }' `
91 block_device=`echo $block_device | awk 'BEGIN { FS ="/" } ; { print $4 }' | sed 's/p.*//g' `
99 BEFORE_RD_IOS=`echo $DISKSTATS | awk '{ print $4 }' `
100 BEFORE_RD_SECTORS=`echo $DISKSTATS | awk '{ print $6 }' `
102 BEFORE_WR_IOS=`echo $DISKSTATS | awk '{ print $8 }' `
103 BEFORE_WR_SECTORS=`echo $DISKSTATS | awk '{ print $10 }' `
107 F2FS_GC_SEGMENTS_BEFORE=`adb shell 'cat /sys/kernel/debug/f2fs/status' | grep segments | egrep 'data|node' | awk '{ segments += $5 } END { print segments }' `
115 AFTER_RD_IOS=`echo $DISKSTATS | awk '{ print $4 }' `
116 AFTER_RD_SECTORS=`echo $DISKSTATS | awk '{ print $6 }' `
118 AFTER_WR_IOS=`echo $DISKSTATS | awk '{ print $8 }'
    [all...]
  /development/vndk/tools/vndk-compliance/
parse-and-fix-errors.sh 42 cat log.error | grep -B1 "error: '$lib\/" | grep FAILED | awk 'BEGIN{FS="_intermediates"}{print $1}' | awk 'BEGIN{FS="S/";}{print $2}' | sort -u > log.$lib
52 not_vendor_list=`cat log.$lib.paths | awk 'BEGIN{FS=":"}{print $1}' | xargs grep -L 'LOCAL_PROPRIETARY_MODULE\|LOCAL_VENDOR_MODULE'`
66 cat log.$lib.paths | awk 'BEGIN{FS=":"}{print $1}' | xargs sed -i '/include \$(BUILD/i LOCAL_HEADER_LIBRARIES += lib'$lib'_headers'
76 cat log.$lib.paths | awk 'BEGIN{FS=":"}{print $1}' | xargs sed -i '/include \$(BUILD/i ifdef BOARD_VNDK_VERSION\nLOCAL_SHARED_LIBRARIES += lib'$lib'\nendif'
78 cat log.$lib.paths | awk 'BEGIN{FS=":"}{print $1}' | xargs sed -i '/include \$(BUILD/i LOCAL_SHARED_LIBRARIES += lib'$lib
  /external/autotest/client/site_tests/platform_DaemonsRespawn/
test_respawn.sh 31 local upstart_pid=$(echo $status | awk '{ print $NF }')
56 JOB=$(echo "$job" | awk -F':' '{ print $1 }')
57 DAEMON=$(echo "$job" | awk -F':' '{ print $2 }')
  /toolchain/binutils/binutils-2.25/gold/testsuite/
icf_safe_so_test.sh 49 func_addr_1=`grep $2 $1 | awk '{print $1}'`
50 func_addr_2=`grep $3 $1 | awk '{print $1}'`
70 awk "
script_test_3.sh 72 section_size=`echo "$section" | awk '{ print $6; }'`
76 segment_size=`echo "$segment" | awk '{ print $5; }'`
92 x=`awk "$script" < /dev/null`
  /external/openssh/regress/unittests/sshkey/
mktestdata.sh 12 awk '/^Modulus:$/,/^Exponent:/' | \
28 awk '/^modulus:$/,/^publicExponent:/' | \
31 awk '/^prime1:$/,/^prime2:/' | \
34 awk '/^prime2:$/,/^exponent1:/' | \
49 awk '/^priv:$/,/^pub:/' | \
52 awk '/^pub:/,/^P:/' | #\
55 awk '/^G:/,0' | \
70 awk '/^priv:$/,/^pub:/' | \
73 awk '/^pub:/,/^ASN1 OID:/' | #\
163 ssh-keygen -lf rsa1_1 | awk '{print $2}' > rsa1_1.f
    [all...]
  /external/ltp/tools/pounder21/build_scripts/
bonnie++ 28 RAM=`cat /proc/meminfo | grep MemTotal | awk -F " " '{print $2}'`
32 MOUNTS=`egrep "(ext|reiser)" /proc/mounts | awk -F " " '{print $2}'`
38 FREE_SPACE=`df -k -P "$f" | tail -n 1 | awk -F " " '{print $4}'`
ipmitool 40 Maj_ver=`ipmitool -V | cut -b 18- | awk -F "." '{print $1}'`
41 Min_ver=`ipmitool -V | cut -b 18- | awk -F "." '{print $2}'`
42 Pat_ver=`ipmitool -V | cut -b 18- | awk -F "." '{print $3}'`
  /dalvik/dx/tests/096-dex-giant-catch/
run 19 awk '
  /dalvik/dx/tests/108-string-annotation/
run 19 --dump-to=- *.class | cut -f 2 -d '|' | awk '
  /dalvik/dx/tests/110-dex-preserve-this/
run 21 cat dump.txt | awk '
  /dalvik/tools/
get-hprof 25 awk '{ printf("%s", substr($7, 1, length($7) - 1)); }'`
  /external/ImageMagick/
version.sh 13 PACKAGE_CHANGE_DATE=`awk '/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]/ { print substr($1,1,4) substr($1,6,2) substr($1,9,2); exit; }' ${srcdir}/ChangeLog`
  /external/autotest/client/site_tests/security_Minijail0/src/
test-caps 21 caps=$(echo "$line" | awk '{print $NF}')
  /external/avb/test/
libavb_host_symbols_test 39 awk '$7 == "UND" && $8 != "" {print $8}' | \

Completed in 1335 milliseconds

1 23 4 5 6 7 8 91011>>