Home | History | Annotate | Download | only in internal

Lines Matching defs:StatStruct

1565 typedef struct _stat StatStruct;
1591 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
1593 inline bool IsDir(const StatStruct& st) {
1600 typedef struct stat StatStruct;
1604 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
1610 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }