Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

2352 typedef struct _stat StatStruct;
2378 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2380 inline bool IsDir(const StatStruct& st) {
2387 typedef struct stat StatStruct;
2391 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2397 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }