Home | History | Annotate | Download | only in gtest

Lines Matching refs:file_stat

115   struct _stat file_stat;
116 return _stat(pathname_.c_str(), &file_stat) == 0;
118 struct stat file_stat;
119 return stat(pathname_.c_str(), &file_stat) == 0;
129 struct _stat file_stat;
130 file_stat.st_mode = 0;
131 result = _stat(removed_sep.c_str(), &file_stat) == 0 &&
132 (_S_IFDIR & file_stat.st_mode) != 0;
134 struct stat file_stat;
135 file_stat.st_mode = 0;
136 result = stat(pathname_.c_str(), &file_stat) == 0 &&
137 S_ISDIR(file_stat.st_mode);