Home
last modified time | relevance | path

Searched refs:_S_IFMT (Results 1 – 11 of 11) sorted by relevance

/src/contrib/llvm-project/libcxx/src/filesystem/
H A Dposix_compat.h89 # undef _S_IFMT
98 # define _S_IFMT 0xF000 macro
115 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
116 # define S_ISCHR(m) (((m) & _S_IFMT) == _S_IFCHR)
117 # define S_ISFIFO(m) (((m) & _S_IFMT) == _S_IFIFO)
118 # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
119 # define S_ISBLK(m) (((m) & _S_IFMT) == _S_IFBLK)
120 # define S_ISLNK(m) (((m) & _S_IFMT) == _S_IFLNK)
121 # define S_ISSOCK(m) (((m) & _S_IFMT) == _S_IFSOCK)
173 buf->st_mode = (buf->st_mode & ~_S_IFMT) | _S_IFLNK; in stat_handle()
/src/crypto/krb5/src/util/support/
H A Dmkstemp.c58 #elif defined _S_IFMT
59 #define S_ISDIR(MODE) (((MODE) & _S_IFMT) == _S_IFDIR)
/src/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Dstat.h41 # define S_IFMT _S_IFMT
/src/contrib/expat/xmlwf/
H A Dreadfilemap.c70 # define S_IFMT _S_IFMT
/src/crypto/heimdal/appl/ftp/ftpd/
H A Dls.c127 #if !defined(_S_IFMT) && defined(S_IFMT)
128 #define _S_IFMT S_IFMT macro
132 #define S_ISSOCK(mode) (((mode) & _S_IFMT) == S_IFSOCK)
136 #define S_ISLNK(mode) (((mode) & _S_IFMT) == S_IFLNK)
/src/crypto/openssl/include/internal/
H A De_os.h78 #define S_IFMT _S_IFMT
/src/crypto/openssh/
H A Ddefines.h170 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
174 # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
/src/contrib/xz/src/xz/
H A Dfile_io.c56 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
57 # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
/src/crypto/openssl/apps/lib/
H A Dopt.c1272 #if defined(_S_IFMT) && defined(_S_IFDIR)
1273 #define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
/src/contrib/sendmail/include/sm/
H A Dconf.h1385 # define S_IFMT _S_IFMT
/src/crypto/heimdal/appl/ftp/
H A DChangeLog372 * ftpd/ls.c: uxp/v lacks _S_IFMT, but has S_IFMT