Searched refs:S_IFREG (Results 1 - 25 of 25) 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)
H A Dmsdos_fs.h50 #define MSDOS_VALID_MODE (S_IFREG | S_IFDIR | S_IRWXU | S_IRWXG | S_IRWXO)
/external/ipsec-tools/src/racoon/
H A Dsafefile.c74 case S_IFREG:
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.h130 #ifndef S_IFREG
131 #define S_IFREG 0100000 macro
H A Ddtest.c507 case S_IFREG: printf("data file"); break;
554 case S_IFREG: printf("data file"); break;
914 case S_IFREG:
H A Dyaffsfs.c846 buf->st_mode |= S_IFREG;
/external/openssh/openbsd-compat/
H A Dstrmode.c56 case S_IFREG: /* regular */
/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/chromium/third_party/libevent/sample/
H A Devent-test.c93 if ((st.st_mode & S_IFMT) == S_IFREG) {
/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/clang/unittests/Basic/
H A DFileManagerTest.cpp37 statBuf.st_mode = IsFile ? (0777 | S_IFREG) // a regular file
/external/clang/lib/Driver/
H A DCompilation.cpp127 if (::stat(P.c_str(), &buf) == 0 ? (buf.st_mode & 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
/external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
H A DProcessLauncherMac.mm272 if (stat(pluginProcessShimPath, &statBuf) == 0 && (statBuf.st_mode & S_IFMT) == S_IFREG)
/external/yaffs2/yaffs2/
H A Dyaffs_fs.c677 obj->yst_mode |= S_IFREG;
744 case S_IFREG: /* file */
1004 case S_IFREG: /* file */
1064 return yaffs_mknod(dir, dentry, mode | S_IFREG, 0);
2060 S_IRUGO | S_IFREG,
/external/v8/src/
H A Dplatform-posix.cc219 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
H A Dd8.cc999 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
/external/zlib/src/examples/
H A Dgun.c522 if (stat(from, &was) != 0 || (was.st_mode & S_IFMT) != S_IFREG)
/external/genext2fs/
H A Dgenext2fs.c1698 case S_IFREG:
1699 if((st.st_mode & S_IFMT) == S_IFREG || st.st_size > 4 * (EXT2_TIND_BLOCK+1))
1762 case S_IFREG:
2449 case S_IFREG:
/external/libselinux/src/
H A Dlabel_file.c366 spec_arr[nspec].mode = S_IFREG;
/external/dropbear/
H A Dscp.c621 case S_IFREG:
/external/openssh/
H A Dscp.c755 case S_IFREG:
/external/strace/
H A Dfile.c753 { S_IFREG, "S_IFREG" },

Completed in 1184 milliseconds