HomeSort by: relevance | last modified time | path
    Searched refs:StatStruct (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 212 posix::StatStruct file_stat;
239 posix::StatStruct file_stat;
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 1963 typedef struct _stat StatStruct;
1989 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
1991 inline bool IsDir(const StatStruct& st) {
1998 typedef struct stat StatStruct;
2002 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2008 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }

Completed in 19 milliseconds