Home
last modified time | relevance | path

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

/external/clang/lib/Basic/
DFileSystemStatCache.cpp28 #define S_ISDIR(s) ((_S_IFDIR & s) !=0)
/external/chromium/sdch/open-vcdiff/src/gtest/
Dgtest-filepath.cc132 (_S_IFDIR & file_stat.st_mode) != 0; in DirectoryExists()
/external/dbus/dbus/
Ddbus-sysdeps-wince-glue.h102 #define _S_IFDIR 0040000 /* directory */ macro
Ddbus-sysdeps-util-win.c357 statbuf->mode = _S_IFDIR; in _dbus_stat()
/external/gtest/src/
Dgtest-filepath.cc205 (_S_IFDIR & file_stat.st_mode) != 0; in DirectoryExists()
/external/protobuf/gtest/include/gtest/internal/
Dgtest-port.h870 return (_S_IFDIR & st.st_mode) != 0;
/external/openssl/
De_os.h244 # define S_IFDIR _S_IFDIR
/external/clang/lib/Frontend/
DCacheTokens.cpp33 #define S_ISDIR(x) (((x)&_S_IFDIR)!=0)
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1309 return (_S_IFDIR & st.st_mode) != 0;
/external/chromium/testing/gtest/include/gtest/internal/
Dgtest-port.h1550 return (_S_IFDIR & st.st_mode) != 0;
/external/bluetooth/glib/gio/
Dglocalfileoutputstream.c45 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
Dglocalfile.c100 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
Dglocalfileinfo.c82 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
/external/openssl/apps/
Dapps.c2975 # if defined(_S_IFMT) && defined(_S_IFDIR)
2976 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
/external/bzip2/
Dbzip2.c138 # define MY_S_ISDIR(x) ((x) & _S_IFDIR)