Searched refs:S_ISDIR (Results 1 – 5 of 5) sorted by relevance
41 if (!S_ISDIR(sb.st_mode)) { in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs()
82 if (S_ISDIR(buf64.st_mode)) { in handleOpen()
40 import static android.system.OsConstants.S_ISDIR;321 if (!S_ISDIR(sb.st_mode)) { in splitPaths()
481 if (S_ISDIR(Libcore.os.fstat(fd).st_mode)) { in open()
60 public static boolean S_ISDIR(int mode) { return (mode & S_IFMT) == S_IFDIR; } in S_ISDIR() method in OsConstants