Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dposix_compat.h90 # undef _S_IFMT
99 # define _S_IFMT 0xF000 macro
116 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
117 # define S_ISCHR(m) (((m) & _S_IFMT) == _S_IFCHR)
118 # define S_ISFIFO(m) (((m) & _S_IFMT) == _S_IFIFO)
119 # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
120 # define S_ISBLK(m) (((m) & _S_IFMT) == _S_IFBLK)
121 # define S_ISLNK(m) (((m) & _S_IFMT) == _S_IFLNK)
122 # define S_ISSOCK(m) (((m) & _S_IFMT) == _S_IFSOCK)
169 buf->st_mode = (buf->st_mode & ~_S_IFMT) | _S_IFLNK; in stat_handle()
/freebsd/crypto/krb5/src/util/support/
H A Dmkstemp.c58 #elif defined _S_IFMT
59 #define S_ISDIR(MODE) (((MODE) & _S_IFMT) == _S_IFDIR)
/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.c70 # 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/openssl/include/internal/
H A De_os.h78 #define S_IFMT _S_IFMT
/freebsd/crypto/openssh/
H A Ddefines.h172 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
176 # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
/freebsd/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)
/freebsd/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)
/freebsd/contrib/pkgconf/libpkgconf/
H A Dwin-dirent.h54 # define S_IFMT _S_IFMT
/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