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

/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp28 #define S_ISDIR(s) ((_S_IFDIR & s) !=0) macro
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/tools/
H A Dvideo_quality_measurement.cc18 #ifndef S_ISDIR // Not defined in stat.h on Windows.
19 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR) macro
134 S_ISDIR(dir_info.st_mode))) {
/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/chromium_org/third_party/webrtc/test/testsupport/
H A Dfileutils.cc31 #ifndef S_ISDIR // Not defined in stat.h on Windows.
32 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR) macro
198 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/chromium_org/third_party/libxml/src/
H A DxmlIO.c65 # ifndef S_ISDIR
67 # define S_ISDIR(x) _S_ISDIR(x) macro
76 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
781 #ifdef S_ISDIR
782 if (S_ISDIR(stat_buffer.st_mode))
/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))
/external/openssl/apps/
H A Dapps.c3052 #ifndef S_ISDIR
3054 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR) macro
3056 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR) macro
3062 #if defined(S_ISDIR)
3065 if (stat(name,&st)==0) return S_ISDIR(st.st_mode);

Completed in 281 milliseconds