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

1 2 3 45 6 7 8 91011>>

  /external/clang/tools/scan-build/
c++-analyzer 86 my $Dir = "$HtmlDir/failures";
87 mkpath $Dir;
100 DIR => $Dir);
207 my $dir;
210 $dir = getcwd();
211 print STDERR "\n[LOCATION]: $dir\n";
224 print STDERR "#SHELL (cd '$dir' && @PrintArgs)\n";
241 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir);
282 my $dir = "$HtmlDir/failures"
    [all...]
ccc-analyzer 86 my $Dir = "$HtmlDir/failures";
87 mkpath $Dir;
100 DIR => $Dir);
207 my $dir;
210 $dir = getcwd();
211 print STDERR "\n[LOCATION]: $dir\n";
224 print STDERR "#SHELL (cd '$dir' && @PrintArgs)\n";
241 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir);
282 my $dir = "$HtmlDir/failures"
    [all...]
  /external/e2fsprogs/lib/blkid/
devname.c 126 DIR *dir, *d_dir; local
130 if ((dir = opendir("/sys/block")) == NULL)
132 while ((de = readdir(dir)) != NULL) {
151 closedir(dir);
187 const char **dir; local
223 for (dir = dirlist; *dir; dir++) {
227 sprintf(device, "%s/%s", *dir, ptname)
    [all...]
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/llvm/utils/
GenLibDeps.pl 69 opendir DIR,$Directory;
70 my @files = readdir DIR;
71 closedir DIR;
333 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
372 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
  /frameworks/base/core/java/android/text/
DynamicLayout.java 157 start[DIR] = DIR_LEFT_TO_RIGHT << DIR_SHIFT;
393 return mInts.getValue(line, DIR) >> DIR_SHIFT;
496 private static final int DIR = START;
  /bionic/libthread_db/
libthread_db.c 212 DIR * dir; local
217 dir = opendir(path);
218 if (!dir) {
223 while ((entry = readdir(dir)) != NULL) {
234 closedir(dir);
  /bootable/recovery/minui/
events.c 50 DIR *dir; local
54 dir = opendir("/dev/input");
55 if(dir != 0) {
56 while((de = readdir(dir))) {
61 fd = openat(dirfd(dir), de->d_name, O_RDONLY);
  /build/tools/atree/
fs.cpp 47 DIR *d = opendir(path.c_str());
  /external/bluetooth/glib/build/win32/dirent/
dirent.c 41 #define _TDIR DIR
57 * Returns a pointer to a DIR structure appropriately filled in to begin
99 /* Allocate enough space to store DIR structure and the complete
155 /* Check for valid DIR struct. */
246 /* Delete the dir structure. */
  /external/bluetooth/glib/glib/
gdir.c 54 DIR *dirp;
82 GDir *dir; local
97 dir = g_new (GDir, 1);
99 dir->wdirp = _wopendir (wpath);
102 if (dir->wdirp)
103 return dir;
113 g_free (dir);
117 dir = g_new (GDir, 1);
119 dir->dirp = opendir (path);
121 if (dir->dirp
    [all...]
  /external/dhcpcd/
ifaddrs.c 97 DIR *d;
  /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/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/base/drm/libdrmframework/include/
PlugInManager.h 204 DIR* pDir = opendir(rsDirPath.string());
  /frameworks/base/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 122 DIR* mDirStream;
141 ScopedReaddir dir(path.c_str());
142 if (dir.isBad()) {
146 while ((filename = dir.next()) != NULL) {
  /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'

Completed in 827 milliseconds

1 2 3 45 6 7 8 91011>>