HomeSort by relevance Sort by last modified time
    Searched refs:S_ISDIR (Results 1 - 25 of 381) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 35 #if !defined(S_ISDIR)
36 #error S_ISDIR
  /system/core/adb/sysdeps/
stat_test.cpp 32 ASSERT_TRUE(S_ISDIR(st.st_mode));
35 ASSERT_TRUE(S_ISDIR(st.st_mode));
39 ASSERT_TRUE(S_ISDIR(st.st_mode));
56 ASSERT_FALSE(S_ISDIR(st.st_mode));
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
remove.c 70 if (S_ISDIR(sb.st_mode))
gettemp.c 134 if (!S_ISDIR(sbuf.st_mode)) {
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 134 #ifndef S_ISDIR
136 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR)
138 #define S_ISDIR(i) (((i) & 0170000) == 040000)
140 #endif /* ! defined (S_ISDIR) */
185 if (S_ISDIR (bits))
  /bootable/recovery/tests/unit/
dirutil_test.cpp 59 ASSERT_TRUE(S_ISDIR(sb.st_mode));
77 ASSERT_TRUE(S_ISDIR(sb.st_mode));
96 ASSERT_TRUE(S_ISDIR(sb.st_mode));
102 ASSERT_TRUE(S_ISDIR(sb.st_mode));
  /external/e2fsprogs/tests/progs/
hold_inode.c 36 if (S_ISDIR(statbuf.st_mode)) {
  /system/core/libnativebridge/tests/
CodeCacheCreate_test.cpp 42 ASSERT_TRUE(S_ISDIR(st.st_mode));
CodeCacheExists_test.cpp 45 ASSERT_TRUE(S_ISDIR(st.st_mode));
  /external/toybox/toys/other/
lsattr.c 85 if(!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) {
98 if (!stat(path, &sb) && !S_ISREG(sb.st_mode) && !S_ISDIR(sb.st_mode)) {
150 if (S_ISDIR(root->st.st_mode) && !root->parent)
157 if (S_ISDIR(root->st.st_mode) && (toys.optflags & FLAG_R)
176 else if (S_ISDIR(sb.st_mode) && !(toys.optflags & FLAG_d))
195 if (!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) {
266 && !S_ISDIR(root->st.st_mode)))
287 if (!S_ISDIR(root->st.st_mode)) fval &= ~FS_DIRSYNC_FL;
298 if (S_ISDIR(root->st.st_mode) && chattr.recursive) return DIRTREE_RECURSE;
  /external/toybox/toys/posix/
ln.c 41 || !S_ISDIR(buf.st_mode))
51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try));
du.c 85 else if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
132 if (S_ISDIR(node->st.st_mode)) {
148 || (S_ISDIR(node->st.st_mode) && !(toys.optflags & FLAG_s)))
  /external/e2fsprogs/lib/e2p/
getflags.c 59 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode))
setflags.c 65 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) {
  /external/libchrome/base/files/
file_enumerator_posix.cc 25 return S_ISDIR(stat_.st_mode);
104 if (recursive_ && S_ISDIR(i->stat_.st_mode))
107 if ((S_ISDIR(i->stat_.st_mode) && (file_type_ & DIRECTORIES)) ||
108 (!S_ISDIR(i->stat_.st_mode) && (file_type_ & FILES)))
  /external/syslinux/com32/include/sys/
stat.h 25 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /frameworks/base/libs/androidfw/
misc.cpp 51 else if (S_ISDIR(sb.st_mode))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 21 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /system/core/adb/sysdeps/win32/
stat.cpp 58 if (!S_ISDIR(st.st_mode)) {
  /external/toybox/toys/pending/
diff.c 489 if (S_ISDIR(node->st.st_mode) && !node->parent) { //add root dirs.
494 if (S_ISDIR(node->st.st_mode) && (toys.optflags & FLAG_r)) {
503 return S_ISDIR(node->st.st_mode) ? 0 : (DIRTREE_RECURSE|DIRTREE_SYMFOLLOW);
679 if (S_ISDIR(st[0].st_mode) && S_ISDIR(st[1].st_mode))
681 else if (!S_ISREG(st[0].st_mode) && !S_ISDIR(st[0].st_mode))
684 else if (!S_ISREG(st[1].st_mode) && !S_ISDIR(st[1].st_mode))
687 else if (S_ISDIR(st[0].st_mode) != S_ISDIR(st[1].st_mode)) {
688 if (S_ISDIR(st[0].st_mode)
    [all...]
  /art/libartbase/base/
os_linux.cc 83 return S_ISDIR(st.st_mode); // TODO: Deal with symlinks?
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 40 def S_ISDIR(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/comparisons/
systemtest.py 62 elif S_ISDIR(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 40 def S_ISDIR(mode):
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
access.c 70 DirMatch = (! WantDir && (! S_ISDIR(FileStat.st_mode)));

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>