Home
last modified time | relevance | path

Searched refs:_S_IFDIR (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dposix_compat.h91 # undef _S_IFDIR
100 # define _S_IFDIR 0x4000 macro
116 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
160 buf->st_mode |= _S_IFDIR; in stat_handle()
/freebsd/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Dstat.h44 # define S_IFDIR _S_IFDIR
/freebsd/crypto/krb5/src/util/support/
H A Dmkstemp.c59 #define S_ISDIR(MODE) (((MODE) & _S_IFMT) == _S_IFDIR)
/freebsd/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h111 # define S_IFDIR _S_IFDIR
/freebsd/crypto/openssl/include/internal/
H A De_os.h74 #define S_IFDIR _S_IFDIR
/freebsd/crypto/krb5/src/lib/krb5/os/
H A Dccdefname.c152 if (!(s.st_mode & _S_IFDIR)) in try_dir()
/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/bc/include/
H A Dstatus.h72 #define S_ISDIR(m) ((m) & (_S_IFDIR))
/freebsd/crypto/openssh/
H A Ddefines.h172 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
/freebsd/contrib/pkgconf/libpkgconf/
H A Dwin-dirent.h59 # define S_IFDIR _S_IFDIR
/freebsd/crypto/heimdal/lib/roken/
H A Droken.h.in357 #define S_ISDIR(m) (((m) & _S_IFDIR) == _S_IFDIR)
/freebsd/contrib/xz/src/xz/
H A Dfile_io.c56 # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
/freebsd/sys/contrib/zstd/programs/
H A Dutil.c361 ret = (statbuf->st_mode & _S_IFDIR) != 0; in UTIL_isDirectoryStat()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2014 inline bool IsDir(const StatStruct& st) { return (_S_IFDIR & st.st_mode) != 0; }
/freebsd/contrib/bzip2/
H A Dbzip2.c138 # define MY_S_ISDIR(x) ((x) & _S_IFDIR)
/freebsd/contrib/libarchive/libarchive/test/
H A Dmain.c99 #define S_ISDIR(m) ((m) & _S_IFDIR)
/freebsd/contrib/libarchive/test_utils/
H A Dtest_main.c137 #define S_ISDIR(m) ((m) & _S_IFDIR)