Home | History | Annotate | Download | only in gtest

Lines Matching defs:StatStruct

2811 typedef struct _stat StatStruct;
2837 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2839 inline bool IsDir(const StatStruct& st) {
2846 typedef struct stat StatStruct;
2850 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2856 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }