Searched defs:S_IFMT (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Fcntl/
H A DFcntl.pm187 &S_ISWHT &S_ISENFMT &S_IFMT &S_IMODE
205 S_IFMT S_IMODE
209 sub S_IFMT { @_ ? ( $_[0] & _S_IFMT() ) : _S_IFMT() } subroutine
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_minix.c148 #define S_IFMT 00170000 macro
152 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
153 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
154 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
H A Dfsys_ext2fs.c277 #define S_IFMT 00170000 macro
281 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
282 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
283 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/osnet-11/usr/src/cmd/sendmail/include/sm/
H A Dconf.h1367 # define S_IFMT _S_IFMT macro
2681 # define S_ISREG(foo) ((foo & S_IFMT) == S_IFREG)
2684 # define S_ISDIR(foo) ((foo & S_IFMT) == S_IFDIR)
2687 # define S_ISLNK(foo) ((foo & S_IFMT) == S_IFLNK)
2691 # define S_ISFIFO(foo) ((foo & S_IFMT) == S_IFIFO)
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfhdr.h559 #ifndef S_IFMT
560 #define S_IFMT 0 macro
576 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
579 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
582 #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR)
587 # define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dperl.h909 #ifndef S_IFMT
911 # define S_IFMT _S_IFMT macro
913 # define S_IFMT 0170000 macro
918 # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
922 # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
927 # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
934 # define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
939 # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
950 # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
953 # define S_ISLNK(m) ((m & S_IFMT)
[all...]

Completed in 42 milliseconds