HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 26 - 50 of 286) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/tests/
run-tests.sh 336 local SCRIPT_NAME="`basename \"$DIR\"`"
356 for DIR in `ls -d "$PROGDIR"/awk/*`; do
357 run_awk_test_dir "$DIR"
404 local DIR="$BUILD_DIR/$NAME"
409 rm -rf "$DIR" && cp -r "$1" "$DIR"
410 (cd "$DIR" && run_ndk_build $NDK_BUILD_FLAGS)
440 for DIR in `ls -d $DEVNDK_DIR/platforms/android-*/samples`; do
441 SAMPLES_DIRS="$SAMPLES_DIRS $DIR"
458 for DIR in $SAMPLES_DIRS; d
    [all...]
  /external/webkit/Tools/Scripts/
show-pretty-diff 42 DIR => File::Spec->tmpdir(),
57 DIR => File::Spec->tmpdir(),
  /ndk/tests/build/import-install/
build.sh 24 DIR=$PWD/libs/$ABI
26 FILE=$DIR/$FILENAME
  /sdk/eclipse/scripts/
create_ddms_symlinks.sh 37 DIR=$BASE/src/com/android/$i
38 if [ -d $DIR ]; then
collect_sources_for_sdk.py 41 self.DIR = "frameworks libcore"
86 p.DIR = a
154 def _mkdir(p, dir):
155 if not os.path.isdir(dir):
157 print "mkdir", dir
159 os.makedirs(dir)
171 for d in p.DIR.split():
  /bionic/libc/unistd/
opendir.c 37 struct DIR
46 int dirfd(DIR* dirp)
51 DIR* opendir( const char* dirpath )
53 DIR* dir = malloc(sizeof(DIR)); local
55 if (!dir)
58 dir->_DIR_fd = open(dirpath, O_RDONLY|O_DIRECTORY);
59 if (dir->_DIR_fd < 0)
61 free(dir);
77 DIR* dir = malloc(sizeof(DIR)); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
dirent.h 128 typedef struct __dirstream DIR;
131 Return a DIR stream on the directory, or NULL if it could not be opened.
135 extern DIR *opendir (__const char *__name) __nonnull ((1));
142 extern DIR *fdopendir (int __fd);
150 extern int closedir (DIR *__dirp) __nonnull ((1));
155 same DIR stream.
163 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1));
166 extern struct dirent *__REDIRECT (readdir, (DIR *__dirp), readdir64)
174 extern struct dirent64 *readdir64 (DIR *__dirp) __nonnull ((1));
184 extern int readdir_r (DIR *__restrict __dirp
    [all...]
  /external/grub/stage2/
dir.h 43 * @(#)dir.h 7.6 (Berkeley) 5/9/89
133 DIR;
140 extern DIR *opendir ();
  /external/grub/util/
grub-set-default 36 --root-directory=DIR Use the directory DIR instead of the root directory
grub-set-default.in 36 --root-directory=DIR Use the directory DIR instead of the root directory
  /packages/apps/Launcher2/
fill_screens.py 14 DIR = "db_files"
31 shutil.rmtree(DIR, True)
32 os.makedirs(DIR)
print_db.py 15 DIR = "db_files"
16 AUTO_FILE = DIR + "/launcher.db"
17 INDEX_FILE = DIR + "/index.html"
29 shutil.rmtree(DIR, True)
30 os.makedirs(DIR)
61 f = file(DIR + "/" + icon_fn, "w")
  /frameworks/base/cmds/ip-up-vpn/
ip-up-vpn.c 34 #define DIR "/data/misc/vpn/"
68 FILE *state = fopen(DIR ".tmp", "wb");
148 if (chmod(DIR ".tmp", 0444) || rename(DIR ".tmp", DIR "state")) {
  /external/llvm/utils/buildit/
build_llvm 64 DIR=`pwd`
75 SRC_DIR=$DIR/src
85 mkdir -p $DIR/obj-llvm || exit 1
86 cd $DIR/obj-llvm || exit 1
91 rm -rf $DIR/bin || exit 1
92 mkdir $DIR/bin || exit 1
94 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
102 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
109 PATH=$DIR/bin:$PATH
171 # Construct the actual destination root, by copying stuff from $DIR/dst-* t
    [all...]
  /external/mesa3d/test/
m_matrix.h 206 #define TRANSFORM_DIRECTION( TO, DIR, MAT ) \
208 TO[0] = DIR[0] * MAT[0] + DIR[1] * MAT[4] + DIR[2] * MAT[8]; \
209 TO[1] = DIR[0] * MAT[1] + DIR[1] * MAT[5] + DIR[2] * MAT[9]; \
210 TO[2] = DIR[0] * MAT[2] + DIR[1] * MAT[6] + DIR[2] * MAT[10];
    [all...]
  /system/netd/
main.cpp 90 static void do_coldboot(DIR *d, int lvl)
104 DIR *d2;
128 DIR *d = opendir(path);
  /development/ndk/tests/
run-all.sh 124 for DIR in $SAMPLE_DIRS; do
125 build_sample $DIR
  /ndk/build/tools/
build-platforms.sh 83 --src-dir=*)
86 --dst-dir=*)
118 echo " --src-dir=<path> Source directory for development platform files [$SRCDIR]"
119 echo " --dst-dir=<path> Destination directory [$DSTDIR]"
187 DIR="$SRCDIR/platforms/android-$PLATFORM"
188 if [ ! -d $DIR ] ; then
189 echo "ERROR: Directory missing: $DIR"
193 log " $DIR"
204 DIR="$SRCDIR/platforms/android-$PLATFORM/arch-$ARCH"
205 if [ -d $DIR ] ; the
    [all...]
  /external/icu4c/tools/genrb/
gendtjar.pl 187 opendir(DIR,$icuBuildDir);
189 @list = readdir(DIR);
190 closedir(DIR);
262 my $dir = $tempDir."/".$icu4jDataDir;
264 mkpath($dir) ;
269 opendir(DIR,$icuDataDir);
271 @list = readdir(DIR);
272 closedir(DIR);
314 my $dir = $tempDir."/".$icu4jDataDir;
316 mkpath($dir);
    [all...]
  /external/e2fsprogs/lib/e2p/
iod.c 28 DIR * dir; local
53 dir = opendir (dir_name);
54 if (dir == NULL) {
58 while ((dep = readdir (dir))) {
71 closedir(dir);
  /frameworks/base/libs/diskusage/
dirsize.c 41 DIR *d;
  /ndk/sources/host-tools/make-3.81/
vmsfunctions.c 34 DIR *
37 struct DIR *dir = (struct DIR *)xmalloc (sizeof (struct DIR)); local
39 struct FAB *dfab = &dir->fab;
42 memset (dir, 0, sizeof *dir);
58 free (dir);
64 return dir;
    [all...]
  /bootable/recovery/applypatch/
freecache.c 15 DIR* d;
34 DIR* fdd;
75 DIR* d;
  /external/webkit/PerformanceTests/SunSpider/
sunspider-compare-results 126 my ($dir, $pattern) = @_;
130 opendir DIR, $dir or die;
131 for my $file (readdir DIR) {
133 my $age = -M "$dir/$file";
140 closedir DIR;
142 return "$dir/$newestFile";
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
mklistpage.pl 220 local ($dir) = @_;
223 if (!($dir =~ /\/$/)) {
224 $dir = $dir . "/";
227 opendir (DIR, $dir) || die ("couldn't open directory $dir: $!");
228 local @testdir_contents = readdir(DIR);
229 closedir(DIR);
232 if ((-d ($dir . $_)) && ($_ ne 'CVS') && ($_ ne '.') && ($_ ne '..'))
    [all...]

Completed in 2611 milliseconds

12 3 4 5 6 7 8 91011>>