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

  /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)) {
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 103 struct stat fd_stat, file_stat; local
117 if (::stat(mName.c_str(), &file_stat) == 0) {
125 return ((fd_stat.st_dev == file_stat.st_dev) &&
126 (fd_stat.st_ino == file_stat.st_ino));
251 struct stat file_stat; local
253 if (::fstat(mFD, &file_stat) == 0) {
261 return file_stat.st_size;
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 69 struct ::stat file_stat; local
70 if (-1 == ::fstat(pHandler, &file_stat)) {
74 pSize = file_stat.st_size;
  /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...]
  /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/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/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/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/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);
  /hardware/intel/common/libva/va/
va_fool.c 272 struct stat file_stat = {0}; local
283 fstat(fd, &file_stat);
290 fool_ctx->segbuf_enc = realloc(fool_ctx->segbuf_enc, file_stat.st_size);
291 read(fd, fool_ctx->segbuf_enc, file_stat.st_size);
297 codedbuf->size = file_stat.st_size;
309 struct stat file_stat = {0}; local
314 fstat(fd, &file_stat);
315 fool_ctx->segbuf_jpg = realloc(fool_ctx->segbuf_jpg, file_stat.st_size);
316 read(fd, fool_ctx->segbuf_jpg, file_stat.st_size);
322 codedbuf->size = file_stat.st_size
    [all...]
  /ndk/sources/third_party/googletest/googletest/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/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/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);

Completed in 475 milliseconds