Searched defs:S_IFREG (Results 1 - 7 of 7) sorted by relevance

/external/expat/xmlwf/
H A Dreadfilemap.c24 #ifndef S_IFREG
25 #define S_IFREG _S_IFREG macro
30 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/external/kernel-headers/original/linux/
H A Dstat.h15 #define S_IFREG 0100000 macro
25 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/external/stlport/src/details/
H A Dfstream_stdio.cpp54 # define S_IFREG _S_IFREG macro
93 # define _S_IFREG S_IFREG
130 return FSTAT(fd, &buf) == 0 && (buf.st_mode & S_IFREG) != 0 ;
138 if (FSTAT(fd, &buf) == 0 && (buf.st_mode & S_IFREG) != 0)
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.h130 #ifndef S_IFREG
131 #define S_IFREG 0100000 macro
/external/grub/stage2/
H A Dfsys_minix.c150 #define S_IFREG 0100000 macro
153 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
H A Dfsys_ext2fs.c231 #define S_IFREG 0100000 macro
234 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java26 public static boolean S_ISREG(int mode) { return (mode & S_IFMT) == S_IFREG; }
321 public static final int S_IFREG = placeholder(); field in class:OsConstants

Completed in 212 milliseconds