Home
last modified time | relevance | path

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

/libcore/luni/src/test/native/
Dlibcore_java_io_FileTest.cpp41 if (!S_ISDIR(sb.st_mode)) { in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs()
/libcore/ojluni/src/main/native/
Dio_util_md.c74 if (S_ISDIR(buf64.st_mode)) { in handleOpen()
/libcore/dalvik/src/main/java/dalvik/system/
DDexPathList.java35 import static android.system.OsConstants.S_ISDIR;
271 if (!S_ISDIR(sb.st_mode)) { in splitPaths()
/libcore/luni/src/main/java/android/system/
DOsConstants.java53 public static boolean S_ISDIR(int mode) { return (mode & S_IFMT) == S_IFDIR; } in S_ISDIR() method in OsConstants
/libcore/luni/src/main/java/libcore/io/
DIoBridge.java501 if (S_ISDIR(Libcore.os.fstat(fd).st_mode)) { in open()