HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 351 - 375 of 580) sorted by null

<<11121314151617181920>>

  /external/google-breakpad/
configure 517 if test -d conf$$.dir; then
518 rm -f conf$$.dir/conf$$.file
520 rm -f conf$$.dir
521 mkdir conf$$.dir 2>/dev/null
527 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
530 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
540 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
541 rmdir conf$$.dir 2>/dev/null
    [all...]
  /external/liblzf/
configure 485 if test -d conf$$.dir; then
486 rm -f conf$$.dir/conf$$.file
488 rm -f conf$$.dir
489 mkdir conf$$.dir
495 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
498 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
505 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
506 rmdir conf$$.dir 2>/dev/null
1183 --srcdir=DIR find the sources in DIR [configure dir or \`..'
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
configure 464 if test -d conf$$.dir; then
465 rm -f conf$$.dir/conf$$.file
467 rm -f conf$$.dir
468 mkdir conf$$.dir 2>/dev/null
474 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
477 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
487 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
488 rmdir conf$$.dir 2>/dev/null
    [all...]
  /ndk/sources/host-tools/make-3.81/
configure 470 if test -d conf$$.dir; then
471 rm -f conf$$.dir/conf$$.file
473 rm -f conf$$.dir
474 mkdir conf$$.dir 2>/dev/null
480 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
483 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
493 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
494 rmdir conf$$.dir 2>/dev/null
    [all...]
  /art/runtime/
common_runtime_test.cc 230 DIR* dir; local
231 if ((dir = opendir(toolsdir.c_str())) != nullptr) {
234 while ((entry = readdir(dir)) != nullptr) {
244 closedir(dir);
390 DIR* dir = opendir(dirpath); local
391 ASSERT_TRUE(dir != nullptr);
394 while ((e = readdir(dir)) != nullptr) {
412 closedir(dir);
    [all...]
  /device/google/dragon/sensor_hub/
sensors.cpp 299 DIR *events_dir;
416 DIR *iio_dir;
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 636 DIR *d; /**< The DIR* from opendir() */
651 DIR *d;
691 * @param filename string to be set to the next file in the dir
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 
  /external/libchrome/base/process/
launch_posix.cc 198 inline void operator()(DIR* x) const {
204 // Automatically closes |DIR*|s.
205 typedef scoped_ptr<DIR, ScopedDIRClose> ScopedDIR;
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 69 std::string& dir = parts[parts.size() - 2]; local
70 StringPiece dirStr = dir;
74 size_t dashPos = dir.find('-');
76 configStr = dirStr.substr(dashPos + 1, dir.size() - (dashPos + 1));
139 std::unique_ptr<DIR, decltype(closedir)*> d(opendir(rootDir.data()), closedir);
157 std::unique_ptr<DIR, decltype(closedir)*> subDir(opendir(prefixPath.data()), closedir);
473 .optionalFlag("--dir", "Directory to scan for resources", &options.resDir)
491 context.getDiagnostics()->error(DiagMessage() << "files given but --dir specified");
  /frameworks/native/cmds/rawbu/
backup.cpp 67 DIR *dir; local
72 dir = opendir(path);
74 if (dir == NULL) {
88 de = readdir(dir);
138 closedir(dir);
169 closedir(dir);
258 DIR *dir; local
265 dir = opendir(srcPath)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 355 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR) \
356 for (BB = FROM; BB != TO; BB = BB->DIR)
    [all...]
  /system/core/init/
init.cpp 451 std::unique_ptr<DIR, int(*)(DIR*)>dir(opendir(android_dir), closedir);
452 if (!dir) return;
455 while ((dp = readdir(dir.get())) != NULL) {
  /system/core/libusbhost/
usbhost.c 99 DIR *devdir;
122 DIR *busdir;
  /system/core/toolbox/
getevent.c 283 DIR *dir; local
291 dir = opendir(dirname);
292 if(dir == NULL)
294 while((de = readdir(dir))) {
310 closedir(dir);
478 DIR *dir; local
480 dir = opendir(dirname);
481 if(dir == NULL
    [all...]
  /system/extras/perfprofd/
perfprofdcore.cc 349 DIR* dir = opendir(psdir.c_str()); local
350 if (dir == NULL) {
351 W_ALOGE("Failed to open dir %s (%s)", psdir.c_str(), strerror(errno));
356 while ((e = readdir(dir)) != 0) {
370 closedir(dir);
621 DIR* dir = opendir(dest_dir.c_str());
622 if (dir != NULL) {
624 while ((e = readdir(dir)) != 0)
    [all...]
  /system/vold/
Utils.cpp 461 DIR *d;
688 ScopedDir::ScopedDir(DIR* dir) : dir_(dir) {}
  /bionic/tests/
ifaddrs_test.cpp 96 std::unique_ptr<DIR, decltype(&closedir)> d(opendir("/sys/class/net"), closedir);
98 dirent* dir; local
99 while ((dir = readdir(d.get())) != nullptr) {
100 if (dir->d_type == DT_LNK) {
101 sys_class_net.push_back(std::string(dir->d_name));
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_constants.py 179 OPTIONS.DIR = 'directory'
  /external/e2fsprogs/util/
symlinks.c 119 static char dir[PATH_MAX]; local
123 /* get rid of unnecessary "../dir" sequences */
125 /* find innermost occurance of "../dir", and save "dir" */
127 char *a, *s, *d = dir;
138 if (!strcmp(dir,"//"))
140 /* note: p still points at ../dir */
152 if (strncmp(dir, a, strlen(dir)))
154 while ((*p++ = *s++)); /* delete the ../dir */
    [all...]
  /external/google-breakpad/src/client/solaris/handler/
solaris_lwp.cc 102 DIR *dir; local
106 if ((dir = opendir(lwp_path)) == NULL)
110 while ((entry = readdir(dir)) != NULL) {
126 closedir(dir);
  /external/libcap-ng/libcap-ng-0.7/utils/
netcap.c 50 DIR *d, *f;
65 // Skip non-process dir entries
160 // For each file in the fd dir...
  /external/rootdev/
rootdev.c 93 DIR *dirp = NULL;
427 NULL, /* default /sys dir */
428 NULL); /* default /dev dir */
  /external/toybox/toys/pending/
bootchartd.c 71 DIR *proc_dir = opendir("/proc");
145 char *dir, dir_path[] = "/tmp/bootchart.XXXXXX"; local
147 if ((dir = mkdtemp(dir_path))) {
148 xchdir((dir = xstrdup(dir)));
149 return dir;
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 390 DIR* d = opendir(search);

Completed in 1004 milliseconds

<<11121314151617181920>>