Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

1275 typedef struct _stat StatStruct;
1301 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
1303 inline bool IsDir(const StatStruct& st) {
1310 typedef struct stat StatStruct;
1314 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
1320 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }