Searched refs:S_IFREG (Results 1 - 25 of 73) sorted by relevance

123

/openbsd-current/gnu/usr.bin/texinfo/info/
H A Dfilesys.h84 #if !defined (S_ISREG) && defined (S_IFREG)
85 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
86 #endif /* !S_ISREG && S_IFREG */
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dvms.h18 #define S_ISREG(X) (((X) & S_IFMT) == S_IFREG)
/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_debugfs.c96 debugfs_create_file("mqds", S_IFREG | 0444, debugfs_root,
98 debugfs_create_file("hqds", S_IFREG | 0444, debugfs_root,
100 debugfs_create_file("rls", S_IFREG | 0444, debugfs_root,
102 debugfs_create_file("hang_hws", S_IFREG | 0200, debugfs_root,
104 debugfs_create_file("mem_limit", S_IFREG | 0200, debugfs_root,
/openbsd-current/gnu/lib/libreadline/
H A Dposixstat.h66 #if defined (_S_IFREG) && !defined (S_IFREG)
67 #define S_IFREG _S_IFREG macro
91 #if defined (S_IFREG) && !defined (S_ISREG)
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dgdb_stat.h49 #if !defined(S_ISREG) && defined(S_IFREG)
50 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/openbsd-current/gnu/usr.bin/binutils/include/mpw/
H A Dstat.h29 #define S_IFREG 0100000 /* regular */ macro
56 #define S_ISREG(m) ((m & S_IFMT) == S_IFREG) /* is a reg file */
/openbsd-current/gnu/usr.bin/binutils/include/mpw/sys/
H A Dstat.h32 #define S_IFREG 0100000L macro
/openbsd-current/gnu/usr.bin/gcc/gcc/fixinc/tests/base/sys/
H A Dstat.h18 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) /* is regular? */
/openbsd-current/gnu/usr.bin/perl/ext/Fcntl/
H A DFcntl.xs42 sub S_ISREG { ( $_[0] & _S_IFMT() ) == S_IFREG() }
89 #ifdef S_IFREG
91 XSANY.any_i32 = S_IFREG;
H A DMakefile.PL29 S_IFDIR S_IFIFO S_IFLNK S_IFREG S_IFSOCK S_IFWHT S_IREAD
/openbsd-current/gnu/usr.sbin/mkhybrid/src/include/
H A Dstatdefs.h96 # ifdef S_IFREG
97 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/openbsd-current/lib/libc/string/
H A Dstrmode.c51 case S_IFREG: /* regular */
/openbsd-current/lib/libc/stdio/
H A Dmakebuf.c104 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
H A Dfseek.c131 (st.st_mode & S_IFMT) != S_IFREG) {
/openbsd-current/gnu/usr.bin/cvs/lib/
H A Dsystem.h63 #if !defined(S_ISREG) && defined(S_IFREG)
65 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
67 # define S_ISREG(m) ((m) & S_IFREG)
/openbsd-current/sbin/swapctl/
H A Dswapctl.c344 rejecttype = S_IFREG;
375 if (rejecttype == S_IFREG)
418 if (rejecttype == S_IFREG) {
/openbsd-current/regress/lib/libc/sys/
H A Dt_mknod.c172 ATF_REQUIRE(mknod(path, S_IFREG, 0) == 0);
176 atf_tc_fail_nonfatal("invalid mode from mknod(2) (S_IFREG)");
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/io/
H A Dbasic_file_stdio.cc57 # define _GLIBCPP_ISREG(x) (((x) & S_IFMT) == S_IFREG)
/openbsd-current/gnu/gcc/fixincludes/
H A Dsystem.h219 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/openbsd-current/gnu/usr.bin/cvs/diff/
H A Dsystem.h53 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
/openbsd-current/lib/libc/gen/
H A Dfstab.c193 if ((sbuf.st_size == 0) || ((sbuf.st_mode & S_IFMT) != S_IFREG)) {
/openbsd-current/usr.bin/cvs/
H A Drepository.c141 case S_IFREG:
/openbsd-current/usr.sbin/rbootd/
H A Dparseconf.c324 (statb.st_mode & S_IFMT) != S_IFREG)
/openbsd-current/sys/sys/
H A Dstat.h127 #define S_IFREG 0100000 /* regular */ macro
/openbsd-current/usr.bin/wc/
H A Dwc.c209 if (ifmt == S_IFREG || ifmt == S_IFLNK

Completed in 343 milliseconds

123