Home
last modified time | relevance | path

Searched refs:S_IFDIR (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixConstants.java83 static final int S_IFDIR = OsConstants.S_IFDIR; field in UnixConstants
DUnixFileAttributes.java158 return ((st_mode & UnixConstants.S_IFMT) == UnixConstants.S_IFDIR); in isDirectory()
170 type != UnixConstants.S_IFDIR && in isOther()
/libcore/luni/src/main/java/android/system/
DOsConstants.java60 public static boolean S_ISDIR(int mode) { return (mode & S_IFMT) == S_IFDIR; } in S_ISDIR()
612 public static final int S_IFDIR = placeholder(); field in OsConstants
/libcore/ojluni/src/main/native/
DUnixFileSystem_md.c136 | ((fmt == S_IFDIR) ? java_io_FileSystem_BA_DIRECTORY : 0)); in Java_java_io_UnixFileSystem_getBooleanAttributes0()
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp572 initConstant(env, c, "S_IFDIR", S_IFDIR); in OsConstants_initConstants()