Home | History | Annotate | Download | only in gtest

Lines Matching defs:StatStruct

2337 typedef struct _stat StatStruct;
2363 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2365 inline bool IsDir(const StatStruct& st) {
2372 typedef struct stat StatStruct;
2376 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2382 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }