Searched defs:S_ISDIR (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp28 #define S_ISDIR(s) ((_S_IFDIR & s) !=0) macro
/external/kernel-headers/original/uapi/linux/
H A Dstat.h21 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
/external/webrtc/src/modules/audio_processing/test/testsupport/
H A Dfileutils.cc22 #ifndef S_ISDIR // Not defined in stat.h on Windows.
23 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR) macro
97 if (!S_ISDIR(path_info.st_mode)) {
/external/webrtc/test/testsupport/
H A Dfileutils.cc22 #ifndef S_ISDIR // Not defined in stat.h on Windows.
23 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR) macro
97 if (!S_ISDIR(path_info.st_mode)) {
/external/bison/linux-lib/sys/
H A Dstat.h400 # undef S_ISDIR macro
427 #ifndef S_ISDIR
429 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
431 # define S_ISDIR(m) 0 macro
/external/bison/darwin-lib/sys/
H A Dstat.h400 # undef S_ISDIR macro
427 #ifndef S_ISDIR
429 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
431 # define S_ISDIR(m) 0 macro
/external/clang/lib/Frontend/
H A DCacheTokens.cpp33 #ifndef S_ISDIR
34 #define S_ISDIR(x) (((x)&_S_IFDIR)!=0) macro
/external/openssh/
H A Ddefines.h149 #ifndef S_ISDIR
150 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR)) macro
151 #endif /* S_ISDIR */
/external/libxml2/
H A DxmlIO.c68 # ifndef S_ISDIR
70 # define S_ISDIR(x) _S_ISDIR(x) macro
79 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
795 #ifdef S_ISDIR
796 if (S_ISDIR(stat_buffer.st_mode))

Completed in 2866 milliseconds