Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

2307 typedef struct _stat StatStruct;
2333 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2335 inline bool IsDir(const StatStruct& st) {
2342 typedef struct stat StatStruct;
2346 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2352 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }