Home
last modified time | relevance | path

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

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