Home | History | Annotate | Download | only in internal

Lines Matching defs:Stat

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