HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 151 - 175 of 365) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/dhcpcd/
ifaddrs.c 98 DIR *d;
  /external/e2fsprogs/lib/blkid/
devno.c 96 DIR *dir; local
102 if ((dir = opendir(dirname)) == NULL)
105 while ((dp = readdir(dir)) != 0) {
129 closedir(dir);
145 const char **dir; local
151 for (dir = devdirs; *dir; dir++)
152 add_to_dirlist(*dir, &list)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
finddev.c 80 DIR *dir; local
87 if ((dir = opendir(dirname)) == NULL)
89 dp = readdir(dir);
105 closedir(dir);
113 dp = readdir(dir);
116 closedir(dir);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 120 DIR* ProcDir;
  /external/openssh/openbsd-compat/
getcwd.c 41 #include <sys/dir.h>
55 DIR *dir = NULL; local
148 if (!(dir = opendir(up)) || fstat(dirfd(dir), &s))
162 if (!(dp = readdir(dir)))
169 if (!(dp = readdir(dir)))
211 (void)closedir(dir);
232 if (dir)
233 (void)closedir(dir);
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 201 DIR * dir; local
206 if (!(dir = opendir("/proc"))) {
211 while ((dirent = readdir(dir))) {
222 closedir(dir);
  /external/protobuf/src/google/protobuf/testing/
file.cc 154 DIR* dir = opendir(name.c_str());
155 if (dir != NULL) {
157 struct dirent* entry = readdir(dir);
166 closedir(dir);
  /external/qemu/
path.c 74 DIR *dir; local
76 if ((dir = opendir(path->pathname)) != NULL) {
79 while ((dirent = readdir(dir)) != NULL) {
84 closedir(dir);
118 /* FIXME: Doesn't handle DIR/.. where DIR is not in emulated dir. */
175 /* Look for path in emulation dir, otherwise return name. */
  /external/webkit/Source/WebKit/android/plugins/
ANPSystemInterface.cpp 173 DIR *dir = NULL; local
174 dir = opendir(path);
175 if (!dir)
179 while ((entry = readdir(dir))) { // while there is still something in the directory to list
196 PLUGIN_LOG("remove dir: %s", file);
207 closedir (dir); // close the directory
  /external/webkit/Tools/Scripts/
check-Xcode-source-file-types 104 DIR => dirname($projectFile),
parallelcl 168 my (undef, $tmpFile) = File::Temp::tempfile('clcommandXXXXX', DIR => File::Spec->tmpdir, OPEN => 0);
sort-Xcode-project-file 92 DIR => dirname($projectFile),
svn-unapply 183 DIR => dirname($fullPath), UNLINK => 1);
223 my $dir = File::Spec->catdir(@dirs);
225 next if (exists $checkedDirectories{$dir});
226 if (-d $dir) {
227 my $svnOutput = svnStatus($dir);
228 if ($svnOutput && $svnOutput =~ m#A\s+$dir\n#) {
229 system "svn", "revert", $dir;
230 rmdir $dir;
232 elsif ($svnOutput && $svnOutput =~ m#D\s+$dir\n#) {
233 system "svn", "revert", $dir;
    [all...]
  /frameworks/av/drm/libdrmframework/include/
PlugInManager.h 204 DIR* pDir = opendir(rsDirPath.string());
  /frameworks/av/media/libmedia/
MediaScanner.cpp 154 DIR* dir = opendir(path); local
155 if (!dir) {
161 while ((entry = readdir(dir))) {
168 closedir(dir);
  /libcore/luni/src/main/native/
java_io_File.cpp 126 DIR* mDirStream;
144 ScopedReaddir dir(path.c_str());
146 while ((filename = dir.next()) != NULL) {
152 return !dir.isBad();
  /system/core/debuggerd/
backtrace.c 129 DIR* d = opendir(task_path);
  /ndk/build/tools/
dev-platform-import.sh 34 register_var_option "--out-dir=<path>" OUT_DIR "Specify output directory"
46 override this with the --out-dir=<path> option.
158 local DIR="$1"
164 cd "$DIR" && find $PATTERNS -type f | sed -e 's!^./!!g'
  /system/core/toolbox/
ls.c 97 static int show_total_size(const char *dirname, DIR *d, int flags)
331 DIR *d;
  /external/grub/util/
grub-install 66 --root-directory=DIR install GRUB images under the directory DIR
76 grub-install copies GRUB images into the DIR/boot directory specfied by
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
jsDriver.pl 686 my ($dir, $object_dir);
692 foreach $dir (@src_dir_files) {
693 if ($dir =~ $pattern) {
694 $object_dir = $dir;
758 my $dir;
764 $dir = $opt_suite_path . "../../js2/src/";
788 $retval = $dir . $os . $debug . $exe;
790 $retval = $dir . $os . $opt . $exe;
823 my ($dir, $object_dir);
827 foreach $dir (@src_dir_files)
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 159 start[DIR] = DIR_LEFT_TO_RIGHT << DIR_SHIFT;
610 return mInts.getValue(line, DIR) >> DIR_SHIFT;
731 private static final int DIR = START;
  /frameworks/native/cmds/dumpstate/
utils.c 53 DIR *d;
96 DIR *d;
490 DIR *proc = opendir("/proc");
  /external/fdlibm/
configure 760 --srcdir=DIR find the sources in DIR [configure dir or \`..']
779 --bindir=DIR user executables [EPREFIX/bin]
780 --sbindir=DIR system admin executables [EPREFIX/sbin]
781 --libexecdir=DIR program executables [EPREFIX/libexec]
782 --datadir=DIR read-only architecture-independent data [PREFIX/share]
783 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
784 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
785 --localstatedir=DIR modifiable single-machine data [PREFIX/var
    [all...]
  /development/build/tools/
windows_sdk.mk 54 # MAIN_SDK_NAME/DIR is set in build/core/Makefile

Completed in 554 milliseconds

1 2 3 4 5 67 8 91011>>