HomeSort by relevance Sort by last modified time
    Searched refs:file_stat (Results 1 - 8 of 8) sorted by null

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 115 struct _stat file_stat; local
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; local
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; local
135 file_stat.st_mode = 0
    [all...]
  /external/gtest/src/
gtest-filepath.cc 176 struct _stat file_stat = {};
177 return _stat(pathname_.c_str(), &file_stat) == 0;
180 struct stat file_stat = {};
181 return stat(pathname_.c_str(), &file_stat) == 0;
203 struct _stat file_stat = {}; local
204 result = _stat(path.c_str(), &file_stat) == 0 &&
205 (_S_IFDIR & file_stat.st_mode) != 0;
208 struct stat file_stat = {}; local
209 result = stat(pathname_.c_str(), &file_stat) == 0 &&
210 S_ISDIR(file_stat.st_mode)
    [all...]
  /external/chromium/testing/gtest/src/
gtest-filepath.cc 209 posix::StatStruct file_stat;
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
236 posix::StatStruct file_stat; local
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
238 posix::IsDir(file_stat);
  /external/llvm/utils/unittest/googletest/
gtest-filepath.cc 209 posix::StatStruct file_stat;
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
236 posix::StatStruct file_stat; local
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
238 posix::IsDir(file_stat);
  /external/protobuf/gtest/src/
gtest-filepath.cc 178 posix::StatStruct file_stat;
179 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
205 posix::StatStruct file_stat; local
206 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
207 posix::IsDir(file_stat);
  /external/oprofile/opjitconv/
opjitconv.c 256 struct stat file_stat; local
274 if (lstat(dmp_pathname, &file_stat) == -1) {
279 if (S_ISLNK(file_stat.st_mode)) {
348 rc = fstat(jofd, &file_stat);
364 if (!(file_stat.st_ctime < dumpfile_modtime ||
365 file_stat.st_mtime < dumpfile_modtime)) {
  /external/chromium/base/
file_util_posix.cc 765 struct stat file_stat; local
766 if (fstat(file_, &file_stat) == base::kInvalidPlatformFileValue) {
770 length_ = file_stat.st_size;
  /external/bluetooth/glib/gio/
glocalfile.c 1706 struct stat file_stat, home_stat; local
    [all...]

Completed in 811 milliseconds