HomeSort by relevance Sort by last modified time
    Searched refs:grep (Results 76 - 100 of 700) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/cmockery/cmockery_0_1_2/packages/
rpm.sh 61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
65 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/strace/tests/
stat.test 9 check_prog grep
19 LC_ALL=C grep -E -x 'ftruncate(64)?\(1, 46118400000\) += 0' $LOG > /dev/null ||
22 LC_ALL=C grep -E -x 'lseek\(1, 46118400000, SEEK_CUR\) += 46118400000|_llseek\(1, 46118400000, \[46118400000\], SEEK_CUR\) += 0' $LOG > /dev/null ||
26 LC_ALL=C grep -E -x 'stat(64)?\("sample", \{st_mode=S_IFREG\|0644, st_size=46118400000, \.\.\.\}\) += 0|(new)?fstatat(64)?\(AT_FDCWD, "sample", \{st_mode=S_IFREG\|0644, st_size=46118400000, \.\.\.\}, 0\) += 0' $LOG > /dev/null ||
30 LC_ALL=C grep -E -x 'lstat(64)?\("sample", \{st_mode=S_IFREG\|0644, st_size=46118400000, \.\.\.\}\) += 0|(new)?fstatat(64)?\(AT_FDCWD, "sample", \{st_mode=S_IFREG\|0644, st_size=46118400000, \.\.\.\}, AT_SYMLINK_NOFOLLOW\) += 0' $LOG > /dev/null ||
detach-running.test 8 check_prog grep
32 while ! grep -F "Process $tracee_pid attached" $LOG > /dev/null; do
41 grep -F "Process $tracee_pid detached" $LOG > /dev/null ||
48 grep '^State:.*R (running)' < /proc/$tracee_pid/status > /dev/null || {
50 grep '^State:' < /proc/$tracee_pid/status
detach-sleeping.test 8 check_prog grep
33 while ! grep -F "Process $tracee_pid attached" $LOG > /dev/null; do
42 grep -F "Process $tracee_pid detached" $LOG > /dev/null ||
49 grep '^State:.*S (sleeping)' < /proc/$tracee_pid/status > /dev/null || {
51 grep '^State:' < /proc/$tracee_pid/status
scm_rights-fd.test 11 check_prog grep
34 LC_ALL=C grep -E -x "$prefix$syscall$*" $LOG > /dev/null || {
  /external/eigen/bench/btl/data/
smooth_all.sh 6 AXPY_FILE=`find ${ORIG_DIR} -name "*.dat" | grep axpy`
17 MATRIX_VECTOR_FILE=`find ${ORIG_DIR} -name "*.dat" | grep matrix_vector`
27 MATRIX_MATRIX_FILE=`find ${ORIG_DIR} -name "*.dat" | grep matrix_matrix`
35 AAT_FILE=`find ${ORIG_DIR} -name "*.dat" | grep _aat`
44 ATA_FILE=`find ${ORIG_DIR} -name "*.dat" | grep _ata`
54 TINY_BLITZ_FILE=`find ${ORIG_DIR} -name "*.dat" | grep tiny_blitz`
62 TVMET_FILE=`find ${ORIG_DIR} -name "*.dat" | grep tvmet`
  /external/compiler-rt/test/BlocksRuntime/
makefile 20 grep CONFIG *.[cmCM] | $(TFR) $(CCDIR) --
23 grep CONFIG *.[cmCM] | $(TFR) $(CCDIR) -open --
26 grep CONFIG *.[cmCM] | $(TFR) -fast $(CCDIR) --
29 grep CONFIG *.[cmCM] | $(TFR) --
32 grep CONFIG *.[cmCM] | $(TFR) -clang -fast --
35 grep CONFIG *.[cmCM] | $(TFR) -fast --
69 grep CONFIG *.[cmCM] | $(TFR) -dyld $(LibsystemRootPath) -- # FIXME: figure out if I can "call" the std target instead of duplicating it
  /external/chromium_org/build/linux/
sysroot_ld_path.sh 24 echo $localpath | grep -qs '^/'
46 echo "$ENTRY" | grep -qs ^include
49 echo "$included_files" | grep -qs ^/
66 echo "$ENTRY" | grep -qs ^/
83 echo $1 | grep -qs ' '
  /external/compiler-rt/lib/dfsan/scripts/
check_custom_wrappers.sh 19 <(grep -E "^fun:.*=custom" ${DFSAN_ABI_LIST} | grep -v "dfsan_get_label" \
21 <(grep -E "__dfsw.*\(" ${DFSAN_CUSTOM_WRAPPERS} \
32 <(grep -E __dfsw_ ${DFSAN_CUSTOM_WRAPPERS} \
35 <(grep -E "^\\s*test_.*\(\);" ${DFSAN_CUSTOM_TESTS} \
  /sdk/eclipse/scripts/
update_version.sh 49 for i in $(grep -rl "$OLD" * | grep -E "\.xml$|\.MF$|\.product$"); do
65 if grep -qs "$OLD" "$i"; then
70 # do another grep for older version without the qualifier. We don't
78 grep -r "$OLD" * | grep -v -E "/build.xml:|/javaCompiler\.\.\.args:"
  /external/ceres-solver/scripts/
make_release 43 VERSION=$(grep 'SET(CERES_VERSION_' CMakeLists.txt | \
46 ABI_VERSION=$(grep 'SET(CERES_ABI_VERSION' CMakeLists.txt | \
49 VERSION_IN_HEADER=$(grep '#define CERES_VERSION' include/ceres/ceres.h | \
51 ABI_VERSION_IN_HEADER=$(grep '#define CERES_ABI_VERSION' \
54 VERSION_IN_SPEC=$(grep '^Version:' scripts/ceres-solver.spec | \
56 GIT_COMMIT=$(git log -1 HEAD |grep commit)
  /external/chromium_org/third_party/sqlite/src/
mkdll.sh 27 $NM tclsqlite3.o | grep ' T ' >temp1
28 grep '_Init$' temp1 >temp2
29 grep '_SafeInit$' temp1 >>temp2
30 grep ' T _sqlite3_' temp1 >>temp2
40 $NM sqlite3.o | grep ' T ' >temp1
42 grep ' _sqlite3_' temp1 | sed 's/^.* _//' >>sqlite3.def
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
rpm.sh 72 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
73 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
74 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
75 grep "Fedora Core.*release 1" /etc/issue >/dev/null 2>&1 && destdir=fc1
76 grep "Fedora Core.*release 2" /etc/issue >/dev/null 2>&1 && destdir=fc2
77 grep "Fedora Core.*release 3" /etc/issue >/dev/null 2>&1 && destdir=fc3
  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 16 grep ^URL .svninfo >> tdb.c
17 grep "^Last Changed Rev" .svninfo | sed -e 's/Last Changed //' >> tdb.c
18 grep "^Last Changed Date" .svninfo >> tdb.c
  /dalvik/dx/src/com/android/dx/command/grep/
Main.java 17 package com.android.dx.command.grep;
31 int count = new Grep(dex, Pattern.compile(pattern), new PrintWriter(System.out)).grep();
  /dalvik/dx/tests/082-dex-throws-list-sharing/
run 19 *.class | grep '^[0-9a-f].*value.*Exception' \
  /dalvik/tools/dmtracedump/
dmtracedump.pl 4 @traces = grep { /.*\.dmtrace\.data/ } readdir(DIR);
  /external/chromium_org/third_party/skia/platform_tools/chromeos/bin/
build_skia_in_chroot 12 if [[ $(echo "$1" | grep "^-d$") != "" ]];
  /external/qemu-pc-bios/bochs/bios/
bios_usage 2 gcc -E rombios.c | grep "^\.org" | sed -e 's/\.org //' | sed -e 's/ .*//' | sort >! temp.usage
  /external/skia/platform_tools/chromeos/bin/
build_skia_in_chroot 12 if [[ $(echo "$1" | grep "^-d$") != "" ]];
  /external/strace/linux/
ioctlent.sh 50 (cd "$dir" && for f; do grep "$regexp" "$f" "uapi/$f" 2>/dev/null; done) |
76 grep -v '^asm-'
91 (cd $dir && grep $regexp $files 2>/dev/null) | \
116 line=$( (cd $dir && grep -h $regexp 2>/dev/null $files) | grep -v '\<_IO')
122 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
128 ${CPP:-cpp} -P $(grep -l $base $files 2>/dev/null) | sed '/^$/d' | \
147 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
  /external/chromium_org/tools/valgrind/
waterfall.sh 57 SLAVES=$(grep "<a href=\"builders\/" "$LOGS_DIR/builders" | \
58 grep 'td class="box"' | \
85 grep "success\|failure" | \
87 grep "failure" | \
88 grep -v "failed compile" | \
100 REPORT_URLS=$(grep -o "[0-9]\+/steps/memory.*/logs/[0-9A-F]\{16\}" \
103 FAILED_TESTS=$(grep -o "[0-9]\+/steps/memory.*/logs/[A-Za-z0-9_.]\+" \
104 "$TMPFILE" | grep -v "[0-9A-F]\{16\}" \
105 | grep -v "stdio" || true)
139 grep -h -o "^FAILED:.*" -R "$LOGS_DIR"/*${PLATFORM}* |
    [all...]
  /external/chromium_org/build/
install-build-deps-android.sh 64 if grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out >& \
69 grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
72 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \
77 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
  /external/chromium_org/courgette/
analyze_mem_test 53 | grep "\.apply_mem$" \
60 | grep "mem_heap_B" \
77 | grep "\.bsdiff_mem$" \
82 | grep "mem_heap_B" \
  /external/chromium_org/third_party/libsrtp/srtp/test/
rtpw_test.sh 67 ps | grep -q $receiver_pid
84 ps | grep -q $sender_pid

Completed in 512 milliseconds

1 2 34 5 6 7 8 91011>>