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

1 2

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osstat.h 12 #define S_IFDIR _S_IFDIR
dir_node.cc 29 SetType(S_IFDIR);
kernel_object.cc 150 if ((node->GetType() & S_IFDIR) == 0)
node.cc 217 return GetType() == S_IFDIR;
  /bionic/libc/kernel/uapi/linux/
stat.h 29 #define S_IFDIR 0040000
39 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /development/ndk/platforms/android-3/include/linux/
stat.h 22 #define S_IFDIR 0040000
31 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
msdos_fs.h 54 #define MSDOS_VALID_MODE (S_IFREG | S_IFDIR | S_IRWXU | S_IRWXG | S_IRWXO)
  /development/ndk/platforms/android-L/include/linux/
stat.h 29 #define S_IFDIR 0040000
39 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /external/kernel-headers/original/uapi/linux/
stat.h 12 #define S_IFDIR 0040000
21 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 26 private static final int S_IFDIR = 0040000;
80 return hasModeFlag(mode, S_IFDIR);
116 int[] typeMasks = {S_IFSOCK, S_IFLNK, S_IFREG, S_IFBLK, S_IFDIR, S_IFCHR, S_IFIFO};
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.cc 66 if ((type & S_IFDIR) && !node->IsaDir())
91 error = FindNode(path.Parent(), S_IFDIR, &parent);
134 int error = FindNode(path.Parent(), S_IFDIR, &parent);
179 error = FindNode(src_path.Parent(), S_IFDIR, &src_parent);
254 int error = FindNode(path.Parent(), S_IFDIR, &parent);
  /external/chromium_org/components/nacl/loader/nonsfi/
abi_conversion.cc 43 case S_IFDIR:
  /build/tools/fs_config/
fs_config.c 139 if (selabel_lookup(sehnd, &secontext, full_name, ( mode | (is_dir ? S_IFDIR : S_IFREG)))) {
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 34 public static final int S_IFDIR = 0040000;
  /cts/libs/deviceutil/src/android/cts/util/
FileUtils.java 33 public static final int S_IFDIR = 0040000;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs_node.cc 165 stat->st_mode |= S_IFDIR;
233 return fileio_resource_ ? S_IFREG : S_IFDIR;
  /external/chromium_org/third_party/skia/src/utils/
SkOSFile.cpp 234 if (s.st_mode & S_IFDIR)
239 if (!(s.st_mode & S_IFDIR) && issuffixfor(fSuffix, entry->d_name))
  /external/chromium_org/third_party/skia/src/ports/
SkOSFile_stdio.cpp 129 return SkToBool(status.st_mode & S_IFDIR);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
html5_fs_test.cc 187 EXPECT_EQ(S_IFDIR, stat.st_mode & S_IFDIR);
409 EXPECT_EQ(S_IFDIR, statbuf.st_mode & S_IFMT);
fuse_fs_test.cc 74 stbuf->st_mode = S_IFDIR | 0755;
326 EXPECT_EQ(S_IFDIR, statbuf.st_mode & S_IFMT);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.cc 93 if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
192 if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
  /external/bison/lib/
sys_stat.in.h 116 # ifdef S_IFDIR
117 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /external/chromium_org/third_party/webrtc/test/testsupport/
fileutils.cc 32 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 192 else if (type == S_IFDIR)
  /external/libselinux/src/
stringrep.c 115 if (m.st_mode & S_IFDIR) {

Completed in 771 milliseconds

1 2