Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/libcxx/src/filesystem/
HDposix_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()
/freebsd-14-stable/contrib/ntp/libntp/lib/isc/win32/include/isc/
HDstat.h41 # define S_IFMT _S_IFMT
/freebsd-14-stable/contrib/expat/xmlwf/
HDreadfilemap.c70 # define S_IFMT _S_IFMT
/freebsd-14-stable/crypto/heimdal/appl/ftp/ftpd/
HDls.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-14-stable/crypto/openssh/
HDdefines.h170 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
174 # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
/freebsd-14-stable/crypto/openssl/
HDe_os.h78 # define S_IFMT _S_IFMT
/freebsd-14-stable/contrib/xz/src/xz/
HDfile_io.c55 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
56 # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
/freebsd-14-stable/crypto/openssl/apps/lib/
HDopt.c1183 # if defined(_S_IFMT) && defined(_S_IFDIR)
1184 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
/freebsd-14-stable/contrib/sendmail/include/sm/
HDconf.h1385 # define S_IFMT _S_IFMT
/freebsd-14-stable/crypto/heimdal/appl/ftp/
HDChangeLog372 * ftpd/ls.c: uxp/v lacks _S_IFMT, but has S_IFMT