Home
last modified time | relevance | path

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

/freebsd/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_IFLN in stat_handle()
[all...]
/freebsd/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Dstat.h41 # define S_IFMT _S_IFMT
/freebsd/contrib/expat/xmlwf/
H A Dreadfilemap.c69 # define S_IFMT _S_IFMT
/freebsd/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)
/freebsd/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))
/freebsd/crypto/openssl/
H A De_os.h78 # define S_IFMT _S_IFMT
/freebsd/crypto/openssl/apps/lib/
H A Dopt.c1183 # if defined(_S_IFMT) && defined(_S_IFDIR)
1184 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
/freebsd/contrib/sendmail/include/sm/
H A Dconf.h1385 # define S_IFMT _S_IFMT
/freebsd/crypto/heimdal/appl/ftp/
H A DChangeLog372 * ftpd/ls.c: uxp/v lacks _S_IFMT, but has S_IFMT