Home | History | Annotate | Download | only in gtest

Lines Matching defs:Stat

272 #include <sys/stat.h>
2359 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
2363 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
2372 typedef struct stat StatStruct;
2376 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }