Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

1704 typedef struct _stat StatStruct;
1730 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
1732 inline bool IsDir(const StatStruct& st) {
1739 typedef struct stat StatStruct;
1743 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
1749 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }