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

/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dstat.h81 #define S_IFMT _IFMT macro
/illumos-gate/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)
/illumos-gate/usr/src/uts/common/sys/
H A Dstat.h405 #define S_IFMT 0xF000 /* type of file */ macro
/illumos-gate/usr/src/boot/sys/sys/
H A Dstat.h223 #define S_IFMT 0170000 /* type of file mask */ macro
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dconf.h1358 # define S_IFMT _S_IFMT macro
2672 # define S_ISREG(foo) ((foo & S_IFMT) == S_IFREG)
2675 # define S_ISDIR(foo) ((foo & S_IFMT) == S_IFDIR)
2678 # define S_ISLNK(foo) ((foo & S_IFMT) == S_IFLNK)
2682 # define S_ISFIFO(foo) ((foo & S_IFMT) == S_IFIFO)
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfhdr.h556 #ifndef S_IFMT
557 #define S_IFMT 0 macro
573 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
576 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)
579 #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR)
584 # define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO)

Completed in 83 milliseconds