Home | History | Annotate | Download | only in gtest

Lines Matching defs:Stat

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