HomeSort by relevance Sort by last modified time
    Searched defs:DIR (Results 1 - 18 of 18) sorted by null

  /external/dropbear/debian/
rules 26 DIR =$(shell pwd)/debian/dropbear
55 rm -rf '$(DIR)'
59 rm -rf '$(DIR)'
60 install -d -m0755 '$(DIR)'/etc/dropbear
62 install -d -m0755 '$(DIR)'/usr/sbin
63 install -m0755 dropbear '$(DIR)'/usr/sbin/dropbear
64 install -d -m0755 '$(DIR)'/usr/bin
65 install -m0755 dbclient '$(DIR)'/usr/bin/dbclient
66 install -m0755 dropbearkey '$(DIR)'/usr/bin/dropbearkey
67 install -d -m0755 '$(DIR)'/usr/lib/dropbea
    [all...]
  /external/bluetooth/glib/build/win32/dirent/
dirent.h 41 /* disk transfer area for this dir */
44 /* dirent struct to return from dir (NOTE: this makes this thread
45 * safe as long as only one thread uses a particular DIR struct at
60 /* given path for dir with search pattern (struct is extended) */
62 } DIR;
64 DIR* __cdecl opendir (const char*);
65 struct dirent* __cdecl readdir (DIR*);
66 int __cdecl closedir (DIR*);
67 void __cdecl rewinddir (DIR*);
68 long __cdecl telldir (DIR*);
    [all...]
  /bionic/libc/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /development/ndk/platforms/android-3/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /external/openssl/ssl/
Makefile 5 DIR= ssl
54 (cd ..; $(MAKE) DIRS=$(DIR) all)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
dirent.h 61 typedef struct DIR DIR;
64 extern DIR* opendir(const char* dirpath);
65 extern DIR* fdopendir(int fd);
66 extern struct dirent* readdir(DIR* dirp);
67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
68 extern int closedir(DIR* dirp);
69 extern void rewinddir(DIR *dirp);
70 extern int dirfd(DIR* dirp);
72 extern int scandir(const char *dir, struct dirent ***namelist
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.h 42 DIR = 258,
61 #define DIR 258
  /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...]
  /external/grub/stage2/
dir.h 43 * @(#)dir.h 7.6 (Berkeley) 5/9/89
133 DIR;
140 extern DIR *opendir ();
  /packages/apps/Launcher2/
print_db.py 14 DIR = "db_files"
15 AUTO_FILE = DIR + "/launcher.db"
16 INDEX_FILE = DIR + "/index.html"
28 shutil.rmtree(DIR, True)
29 os.makedirs(DIR)
60 f = file(DIR + "/" + icon_fn, "w")
  /frameworks/base/core/java/android/text/
DynamicLayout.java 138 start[DIR] = DIR_LEFT_TO_RIGHT << DIR_SHIFT;
383 return mInts.getValue(line, DIR) >> DIR_SHIFT;
487 private static final int DIR = START;
StaticLayout.java 227 int dir = DEFAULT_DIR; // XXX local
256 dir = bidi(dir, chs, chdirs, n, false);
461 needMultiply, start, chdirs, dir, easy,
497 needMultiply, start, chdirs, dir, easy,
513 needMultiply, start, chdirs, dir, easy,
533 needMultiply, start, chdirs, dir, easy,
579 needMultiply, start, chdirs, dir, easy,
616 * @param dir the direction flag, either DIR_REQUEST_LTR,
628 /* package */ static int bidi(int dir, char[] chs, byte[] chInfo, int n,
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 1074 milliseconds