Home | History | Annotate | Download | only in ts

Lines Matching defs:Stat

299 # include <sys/stat.h>
419 // namespace (read, write, close, chdir, isatty, stat). We do not currently
2884 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
2888 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2897 typedef struct stat StatStruct;
2901 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }