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

  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 216 posix::StatStruct file_stat;
217 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
243 posix::StatStruct file_stat; local
244 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
245 posix::IsDir(file_stat);
  /external/chromium_org/third_party/mesa/src/src/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/gtest/src/
gtest-filepath.cc 211 posix::StatStruct file_stat;
212 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
238 posix::StatStruct file_stat; local
239 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
240 posix::IsDir(file_stat);
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 207 posix::StatStruct file_stat;
208 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
234 posix::StatStruct file_stat; local
235 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
236 posix::IsDir(file_stat);
  /external/mesa3d/src/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/chromium_org/net/disk_cache/simple/
simple_util.cc 118 struct stat file_stat; local
119 if (stat(path.value().c_str(), &file_stat) != 0)
123 if (GetNanoSecsFromStat(file_stat, &sec, &nsec)) {
  /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_org/third_party/google_appengine_cloudstorage/cloudstorage/
cloudstorage_api.py 140 file_stat = common.GCSFileStat(
148 return file_stat
  /external/chromium_org/v8/src/base/platform/
platform-posix.cc 331 struct stat file_stat; local
332 if (fstat(fileno(file), &file_stat) != 0) return NULL;
333 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
  /bionic/linker/
linker_phdr.cpp 584 struct stat file_stat; variable in typeref:struct:stat
585 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
588 off_t file_size = file_stat.st_size;
linker.cpp 285 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat, off64_t file_offset) {
291 soinfo* si = new (g_soinfo_allocator.alloc()) soinfo(name, file_stat, file_offset);
455 soinfo::soinfo(const char* name, const struct stat* file_stat, off64_t file_offset) {
462 if (file_stat != nullptr) {
463 this->st_dev = file_stat->st_dev;
464 this->st_ino = file_stat->st_ino;
803 struct stat file_stat; local
804 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
814 si->get_st_dev() == file_stat.st_dev &&
815 si->get_st_ino() == file_stat.st_ino &
    [all...]
linker.h 204 soinfo(const char* name, const struct stat* file_stat, off64_t file_offset);
  /external/bluetooth/bluedroid/btif/co/
bta_fs_co.c 333 struct stat file_stat; local
350 if (fstat(fd, &file_stat) == 0)
352 file_size = file_stat.st_size;
    [all...]
  /external/chromium_org/v8/src/
d8.cc     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
gtest-all.cc     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-all.cc     [all...]

Completed in 7213 milliseconds