HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 1 - 25 of 735) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kotlinc/bin/
kotlinc-jvm 17 DIR="${BASH_SOURCE[0]%/*}"
18 : ${DIR:="."}
20 "${DIR}"/kotlinc "$@"
kotlin 19 DIR="${BASH_SOURCE[0]%/*}"
20 : ${DIR:="."}
22 "${DIR}"/kotlinc "$@"
kotlin-dce-js 19 DIR="${BASH_SOURCE[0]%/*}"
20 : ${DIR:="."}
22 "${DIR}"/kotlinc "$@"
kotlinc-js 19 DIR="${BASH_SOURCE[0]%/*}"
20 : ${DIR:="."}
22 "${DIR}"/kotlinc "$@"
  /external/vulkan-validation-layers/loader/
dirent_on_windows.h 18 typedef struct DIR DIR;
24 DIR *opendir(const char *);
25 int closedir(DIR *);
26 struct dirent *readdir(DIR *);
27 void rewinddir(DIR *);
  /external/ltp/testcases/kernel/fs/racer/
fs_racer.sh 32 DIR="$TMPDIR/race"
36 [ -e $DIR ] || mkdir $DIR
37 ./fs_racer_file_create.sh $DIR $MAX_FILES &
38 ./fs_racer_file_create.sh $DIR $MAX_FILES &
39 ./fs_racer_file_create.sh $DIR $MAX_FILES &
41 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
42 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
43 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
45 ./fs_racer_file_rename.sh $DIR $MAX_FILES
    [all...]
fs_racer_file_rename.sh 22 DIR=$1
28 mv $DIR/$file $DIR/$new_file 2> /dev/null
fs_racer_file_concat.sh 22 DIR=$1
26 cat $DIR/$file >> $DIR/$new_file
27 cat $DIR/$file/$file/$file >> $DIR/$new_file
fs_racer_dir_create.sh 22 DIR=$1
26 echo "asdf" > $DIR/$file/$file/$file
31 mkdir -p $DIR/$file/$file/ 2> /dev/null
fs_racer_file_list.sh 22 DIR=$1
26 ls -R $DIR/ > /dev/null 2> /dev/null &
27 ls -R $DIR/ > /dev/null 2> /dev/null &
28 ls -R $DIR/ > /dev/null 2> /dev/null &
29 ls -R $DIR/ > /dev/null 2> /dev/null &
30 ls -R $DIR/ > /dev/null 2> /dev/null &
32 ls -R $DIR/ > /dev/null 2> /dev/null &
33 ls -R $DIR/ > /dev/null 2> /dev/null &
34 ls -R $DIR/ > /dev/null 2> /dev/null &
35 ls -R $DIR/ > /dev/null 2> /dev/null
    [all...]
fs_racer_file_rm.sh 22 DIR=$1
27 rm -rf $DIR/$file 2> /dev/null
  /libcore/ojluni/src/test/
artrun-testng 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21 $DIR/artrun -Xmx512m org.testng.TestNG -verbose 3 "$DIR/$TESTNG_FILE"
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
main-bisect-test.sh 17 DIR=full_bisect_test
20 if [[ ! -f "${DIR}/setup.sh" ]] ; then
21 echo "Cannot find ${DIR}/setup.sh. You are running this from the wrong directory."
27 ${DIR}/setup.sh
29 ./binary_search_state.py --get_initial_items="${DIR}/get_initial_items.sh" \
30 --switch_to_good="${DIR}/switch_to_good.sh" \
31 --switch_to_bad="${DIR}/switch_to_bad.sh" \
32 --test_setup_script="${DIR}/test_setup.sh" \
33 --test_script="${DIR}/interactive_test.sh" \
36 ${DIR}/cleanup.s
    [all...]
setup.sh 8 DIR=`pwd`/"full_bisect_test"
10 GOOD_BUILD=${DIR}/good-objects
11 BAD_BUILD=${DIR}/bad-objects
13 mkdir -p ${DIR}/work
15 WORK_BUILD=${DIR}/work
19 COMMON_FILE="${DIR}/common.sh"
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 19 DIR=$(dirname "$0")
21 if [ ! -f "$DIR/privkey.pem" ]; then
22 openssl genrsa -out "$DIR/privkey.pem" 2048
25 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch > /tmp/cert-rsa-req.pem
26 openssl req -in /tmp/cert-rsa-req.pem -pubkey -noout | openssl rsa -pubin -pubout -outform der > "$DIR/cert-rsa-pubkey.der"
27 openssl x509 -extfile "$DIR/default.cnf" -days 3650 -extensions usr_cert -req -signkey "$DIR/privkey.pem" -outform d -set_serial -99999999999999999999 < /tmp/cert-rsa-req.pem > "$DIR/cert-rsa.der"
30 openssl asn1parse -in "$DIR/cert-rsa.der" -inform d -out "$DIR/cert-rsa-tbs.der" -noout -strparse
    [all...]
  /frameworks/wilhelm/tools/mphtogen/
Makefile 0 DIR = ../../src/autogen
2 ALL = $(DIR)/MPH_to_3DGroup.h $(DIR)/MPH_to_AudioPlayer.h $(DIR)/MPH_to_AudioRecorder.h \
3 $(DIR)/MPH_to_Engine.h $(DIR)/MPH_to_LEDDevice.h $(DIR)/MPH_to_Listener.h \
4 $(DIR)/MPH_to_MetadataExtractor.h $(DIR)/MPH_to_MidiPlayer.h $(DIR)/MPH_to_OutputMix.h
    [all...]
  /bionic/tools/
update_seccomp.sh 2 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3 cd $DIR/..
update_syscalls.sh 2 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3 cd $DIR/..
  /external/fio/os/windows/posix/include/
dirent.h 18 typedef struct dirent_ctx DIR;
20 DIR *opendir(const char *dirname);
21 struct dirent *readdir(DIR *dirp);
22 int closedir(DIR *dirp);
  /external/scapy/
run_scapy 2 DIR=$(dirname $0)
5 PYTHONPATH=$DIR exec $PYTHON -m scapy.__init__ $@
  /external/syslinux/com32/include/
dirent.h 15 __extern DIR *opendir(const char *);
16 __extern struct dirent *readdir(DIR *);
17 __extern int closedir(DIR *);
18 __extern DIR *fdopendir(int);
  /bionic/tests/headers/posix/
dirent_h.c 34 INCOMPLETE_TYPE(DIR);
47 FUNCTION(closedir, int (*f)(DIR*));
48 FUNCTION(dirfd, int (*f)(DIR*));
49 FUNCTION(fdopendir, DIR* (*f)(int));
50 FUNCTION(opendir, DIR* (*f)(const char*));
51 FUNCTION(readdir, struct dirent* (*f)(DIR*));
52 FUNCTION(readdir_r, int (*f)(DIR*, struct dirent*, struct dirent**));
53 FUNCTION(rewinddir, void (*f)(DIR*));
57 FUNCTION(seekdir, void (*f)(DIR*, long));
58 FUNCTION(telldir, long (*f)(DIR*));
    [all...]
  /external/autotest/contrib/
show_offload_failures 14 DIR=$1
15 if [ ! -d $AUTOTEST/$DIR ]; then
16 echo "$DIR is not a directory in $AUTOTEST" >&2
29 gsutil ls -R "$GSURI/$DIR/*" | sed "s=^$GSURI/==p"
30 find $DIR -type f
  /prebuilts/go/darwin-x86/src/
cmp.bash 33 DIR=$GOROOT/src/$pkg
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
47 DIR=$GOROOT/src/$pkg
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
55 DIR=$GOROOT/src/$pkg
57 if cmp $DIR/old.txt $DIR/new.txt &> /dev/null
58 then rm $DIR/old.txt $DIR/new.txt
59 else echo "==> $DIR"
    [all...]
  /prebuilts/go/linux-x86/src/
cmp.bash 33 DIR=$GOROOT/src/$pkg
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
47 DIR=$GOROOT/src/$pkg
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
55 DIR=$GOROOT/src/$pkg
57 if cmp $DIR/old.txt $DIR/new.txt &> /dev/null
58 then rm $DIR/old.txt $DIR/new.txt
59 else echo "==> $DIR"
    [all...]

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011>>