Home | History | Annotate | Download | only in internal

Lines Matching refs:Stat

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