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

/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp28 #define S_ISDIR(s) ((_S_IFDIR & s) !=0) macro
/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/kernel-headers/original/linux/
H A Dstat.h26 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
/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/grub/stage2/
H A Dfsys_minix.c154 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
435 if (!(INODE->i_size) || !S_ISDIR (INODE->i_mode))
H A Dfsys_ext2fs.c235 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
690 if (!(INODE->i_size) || !S_ISDIR (INODE->i_mode))
H A Dfsys_reiserfs.c287 #define S_ISDIR(mode) (((mode) & 0170000) == 0040000) macro
1117 if (! S_ISDIR (mode))
/external/clang/lib/Frontend/
H A DCacheTokens.cpp32 #ifndef S_ISDIR
33 #define S_ISDIR(x) (((x)&_S_IFDIR)!=0) macro
/external/openssh/
H A Ddefines.h138 #ifndef S_ISDIR
139 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR)) macro
140 #endif /* S_ISDIR */
/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/chromium_org/third_party/openssl/openssl/apps/
H A Dapps.c3048 #ifndef S_ISDIR
3050 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR) macro
3052 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR) macro
3058 #if defined(S_ISDIR)
3061 if (stat(name,&st)==0) return S_ISDIR(st.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
784 #ifdef S_ISDIR
785 if (S_ISDIR(stat_buffer.st_mode))
/external/openssl/apps/
H A Dapps.c3048 #ifndef S_ISDIR
3050 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR) macro
3052 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR) macro
3058 #if defined(S_ISDIR)
3061 if (stat(name,&st)==0) return S_ISDIR(st.st_mode);

Completed in 541 milliseconds