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

  /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;
  /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...]
  /external/chromium_org/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/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/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);
  /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/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/mclinker/lib/Support/
FileHandle.cpp 69 struct ::stat file_stat; local
70 if (-1 == ::fstat(pHandler, &file_stat)) {
74 pSize = file_stat.st_size;
  /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
  /bionic/linker/
linker_phdr.cpp 583 struct stat file_stat; variable in typeref:struct:stat
584 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
587 off_t file_size = file_stat.st_size;
linker.cpp 287 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat) {
300 if (file_stat != NULL) {
301 si->set_st_dev(file_stat->st_dev);
302 si->set_st_ino(file_stat->st_ino);
760 struct stat file_stat; local
761 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
771 si->get_st_dev() == file_stat.st_dev &&
772 si->get_st_ino() == file_stat.st_ino) {
787 soinfo* si = soinfo_alloc(SEARCH_NAME(name), &file_stat);
    [all...]
  /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/
platform-posix.cc 352 struct stat file_stat; local
353 if (fstat(fileno(file), &file_stat) != 0) return NULL;
354 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
gtest-all.cc     [all...]

Completed in 619 milliseconds