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

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFileSpec.cpp543 struct stat file_stats; local
544 return GetFileStats (this, &file_stats);
604 struct stat file_stats; local
605 if (GetFileStats (this, &file_stats))
606 return file_stats.st_size;
613 struct stat file_stats; local
614 if (GetFileStats (this, &file_stats))
616 mode_t file_type = file_stats.st_mode & S_IFMT;
636 struct stat file_stats; local
637 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;

Completed in 112 milliseconds