Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

1979 typedef struct _stat StatStruct;
2005 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2007 inline bool IsDir(const StatStruct& st) {
2014 typedef struct stat StatStruct;
2018 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
2024 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }