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

<<11121314151617181920>>

  /external/iputils/ninfod/
configure 476 if test -d conf$$.dir; then
477 rm -f conf$$.dir/conf$$.file
479 rm -f conf$$.dir
480 mkdir conf$$.dir 2>/dev/null
486 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
489 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
499 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
500 rmdir conf$$.dir 2>/dev/null
    [all...]
  /external/avahi/avahi-daemon/
glob.c 61 * expand ~user/foo to the /home/dir/of/user/foo
151 static DIR *g_opendir(Char *, glob_t *);
614 DIR *dirp;
827 static DIR *
  /external/vboot_reference/host/arch/x86/lib/
crossystem_arch.c 510 DIR *dir; local
514 dir = opendir(GPIO_BASE_PATH);
515 if (!dir) {
519 while(0 != (ent = readdir(dir))) {
525 closedir(dir);
536 DIR *dir; local
542 dir = opendir(GPIO_BASE_PATH);
543 if (!dir) {
578 DIR *dir; local
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 164 start[DIR] = DIR_LEFT_TO_RIGHT << DIR_SHIFT;
622 return mInts.getValue(line, DIR) >> DIR_SHIFT;
754 private static final int DIR = START;
  /hardware/bsp/intel/peripheral/libmraa/src/iio/
iio.c 77 DIR* dir; local
91 dir = opendir(buf);
92 if (dir != NULL) {
93 while ((ent = readdir(dir)) != NULL) {
102 closedir(dir);
107 seekdir(dir, 0);
108 while ((ent = readdir(dir)) != NULL) {
176 closedir(dir);
365 DIR* dir local
586 DIR* dir; local
    [all...]
  /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 50 # MAIN_SDK_NAME/DIR is set in build/core/Makefile
  /frameworks/base/services/core/jni/
com_android_server_AlarmManagerService.cpp 328 std::unique_ptr<DIR, int(*)(DIR*)> dir(opendir(rtc_sysfs), closedir);
329 if (!dir.get()) {
335 while (errno = 0, dirent = readdir(dir.get())) {
  /frameworks/native/vulkan/libvulkan/
layers_extensions.cpp 108 // Libraries in the system layer library dir can't be loaded into
324 auto dir_deleter = [](DIR* handle) { closedir(handle); };
325 std::unique_ptr<DIR, decltype(dir_deleter)> dir(opendir(dirname.c_str()),
327 if (!dir) {
337 while ((entry = readdir(dir.get())) != nullptr)
  /ndk/build/tools/
dev-system-import.sh 89 but you can override this with the --out-dir=<path> option.
109 register_var_option "--out-dir=<path>" OUT_DIR "Specify output directory."
152 local DIR="$1"
158 cd "$DIR" && find $PATTERNS -type f | sed -e 's!^./!!g'
229 dump "Please use --out-dir=<path> to specify one!"
  /system/core/adb/
file_sync_service.cpp 103 std::unique_ptr<DIR, int(*)(DIR*)> d(opendir(path), closedir);
  /system/core/init/
property_service.cpp 403 std::unique_ptr<DIR, int(*)(DIR*)> dir(opendir(PERSISTENT_PROPERTY_DIR), closedir);
404 if (!dir) {
411 while ((entry = readdir(dir.get())) != NULL) {
420 int fd = openat(dirfd(dir.get()), entry->d_name, O_RDONLY | O_NOFOLLOW);
  /toolchain/binutils/binutils-2.25/intl/
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...]
  /bootable/recovery/minui/
events.cpp 64 DIR* dir = opendir("/dev/input"); local
65 if (dir != NULL) {
67 while ((de = readdir(dir))) {
72 int fd = openat(dirfd(dir), de->d_name, O_RDONLY);
104 closedir(dir);
  /device/asus/fugu/libaudio/
AudioHotplugThread.cpp 255 DIR* alsaDir;
  /device/google/dragon/power/
power_dragon.cpp 127 DIR *iio_activity_dir = opendir(IIO_ACTIVITY_DEVICE_PATH);
  /device/google/marlin/dataservices/datatop/src/
datatop_gen_poll.c 152 * @param dir Directory which file is located in, assigned to the dpg prefix.
155 static void dpg_construction(char *dir, char *name)
158 int both_len = strlen(dir) + strlen(name) + 1;
163 strlcpy(both, dir, both_len);
165 maindir = malloc(strlen(dir) + 1);
166 strlcpy(maindir, dir, strlen(dir) + 1);
219 * @param dir Directory to search.
221 static int dtop_search(char *dir)
223 DIR *dp
    [all...]
  /external/ImageMagick/MagickCore/
vms.h     [all...]
  /external/autotest/client/profilers/powertop/src/
urbnum.c 132 DIR *dir; local
140 dir = opendir("/sys/bus/usb/devices");
141 if (!dir)
145 while ((dirent = readdir(dir))) {
159 closedir(dir);
wireless.c 165 DIR *dir; local
172 dir = opendir("/sys/bus/pci/drivers/iwl4965");
173 while (dir && (dirent = readdir(dir))) {
180 if (dir)
181 closedir(dir);
182 dir = opendir("/sys/bus/pci/drivers/iwl3945");
183 if (!dir)
185 while ((dirent = readdir(dir))) {
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
html.js 53 DIR: 'dir',
191 SPECIAL_ELEMENTS[NS.HTML][$.DIR] = true;
  /external/curl/packages/vms/
compare_curl_source.com 38 $! DISK:[dir.dir.reference.project_name] and this will be used
39 $! to calculate DISK:[dir.dir.vms_source.project_name] for the VMS specific
137 $ if f$search("src_root1:[000000]curl.dir") .eqs. ""
139 $ create/dir/prot=o:rwed src_root1:[curl]
153 $ if f$search("vms_root1:[000000]curl.dir") .eqs. ""
155 $ create/dir/prot=o:rwed vms_root1:[curl]
252 $ if ref_type .eqs. ".DIR" then goto loop
358 $ if ref_utype .eqs. ".DIR" then goto missing_loo
    [all...]
  /external/dbus/tools/
dbus-cleanup-sockets.c 117 socket_entry_new (const char *dir,
125 len = strlen (dir) + strlen (fname) + 2; /* 2 = nul and '/' */
128 strcpy (se->name, dir);
168 read_sockets (const char *dir,
172 DIR *dirh;
182 dirh = opendir (dir);
186 dir, strerror (errno));
197 se = socket_entry_new (dir, dent->d_name);
350 clean_dir (const char *dir)
355 read_sockets (dir, &entries, &n_entries)
    [all...]
  /external/e2fsprogs/lib/ss/
Makefile.in 96 $(Q) DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct
102 $(Q) DIR=$(srcdir) $(MK_CMDS) $(srcdir)/test_cmd.ct
  /external/iproute2/ip/
iptuntap.c 276 DIR *dir; local
280 dir = opendir("/sys/class/net");
281 if (!dir) {
285 while ((d = readdir(dir))) {
304 closedir(dir);

Completed in 1190 milliseconds

<<11121314151617181920>>