Searched defs:S_ISDIR (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/db/os/
H A Dos_stat.c43 #if !defined(S_ISDIR) || defined(STAT_MACROS_BROKEN)
45 #define S_ISDIR(m) (_S_IFDIR & (m)) macro
47 #define S_ISDIR(m) (((m) & 0170000) == 0040000)
51 *isdirp = S_ISDIR(sb.st_mode);
/illumos-gate/usr/src/cmd/tcpd/
H A Dtcpdmatch.c41 #ifndef S_ISDIR
42 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
105 } else if (!S_ISDIR(st.st_mode)) {
H A Dtcpdchk.c43 #ifndef S_ISDIR
44 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
131 } else if (!S_ISDIR(st.st_mode)) {
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dstat.h106 #define S_ISDIR(m) (((m)&_IFMT) == _IFDIR) macro
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/
H A Ddb-int.h290 #ifndef S_ISDIR /* POSIX 1003.1 file type tests. */
291 #define S_ISDIR(m) ((m & 0170000) == 0040000) /* directory */ macro
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_minix.c154 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
435 if (!(INODE->i_size) || !S_ISDIR (INODE->i_mode))
H A Dfsys_ext2fs.c283 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
738 if (!(INODE->i_size) || !S_ISDIR (INODE->i_mode))
H A Dfsys_reiserfs.c287 #define S_ISDIR(mode) (((mode) & 0170000) == 0040000) macro
1118 if (! S_ISDIR (mode))
/illumos-gate/usr/src/uts/common/sys/
H A Dstat.h446 #define S_ISDIR(mode) (((mode)&0xF000) == 0x4000) macro
/illumos-gate/usr/src/boot/sys/sys/
H A Dstat.h237 #define S_ISDIR(m) (((m) & 0170000) == 0040000) /* directory */ macro
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dconf.h2674 # ifndef S_ISDIR
2675 # define S_ISDIR(foo) ((foo & S_IFMT) == S_IFDIR) macro
2676 # endif /* ! S_ISDIR */
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfhdr.h572 #ifndef S_ISDIR
573 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) macro

Completed in 191 milliseconds