Home
last modified time | relevance | path

Searched refs:S_ISREG (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/native/
Dlibcore_java_io_FileTest.cpp50 if (!S_ISREG(sb.st_mode)) { in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs()
/libcore/luni/src/main/java/android/system/
DOsConstants.java63 public static boolean S_ISREG(int mode) { return (mode & S_IFMT) == S_IFREG; } in S_ISREG() method in OsConstants
/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java952 if (android.system.OsConstants.S_ISREG(Libcore.os.fstat(fd).st_mode)) { in map()