Searched refs:file_stats (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Host/common/
H A DFileSpec.cpp543 struct stat file_stats; local
544 return GetFileStats (this, &file_stats);
603 struct stat file_stats; local
604 if (GetFileStats (this, &file_stats))
605 return file_stats.st_size;
612 struct stat file_stats; local
613 if (GetFileStats (this, &file_stats))
615 mode_t file_type = file_stats.st_mode & S_IFMT;
635 struct stat file_stats; local
636 if (GetFileStats (this, &file_stats))
[all...]
H A DFile.cpp601 struct stat file_stats; local
602 if (::fstat (fd, &file_stats) == 0)
604 if (file_stats.st_size > offset)
606 const size_t bytes_left = file_stats.st_size - offset;
/external/chromium_org/third_party/webrtc/base/
H A Dstream.cc439 struct stat file_stats; local
440 if (fstat(fileno(file_), &file_stats) != 0)
443 *size = file_stats.st_size;
465 struct stat file_stats; local
466 if (stat(filename.c_str(), &file_stats) != 0)
468 *size = file_stats.st_size;

Completed in 102 milliseconds