Searched defs:WriteFully (Results 1 - 4 of 4) sorted by relevance

/art/compiler/
H A Dfile_output_stream.cc28 bool FileOutputStream::WriteFully(const void* buffer, size_t byte_count) { function in class:art::FileOutputStream
29 return file_->WriteFully(buffer, byte_count);
H A Dbuffered_output_stream.cc26 bool BufferedOutputStream::WriteFully(const void* buffer, size_t byte_count) { function in class:art::BufferedOutputStream
29 return out_->WriteFully(buffer, byte_count);
46 success = out_->WriteFully(&buffer_[0], used_);
H A Dvector_output_stream.h34 bool WriteFully(const void* buffer, size_t byte_count) { function in class:art::FINAL
/art/runtime/base/unix_file/
H A Dfd_file.cc211 bool FdFile::WriteFully(const void* buffer, size_t byte_count) { function in class:unix_file::FdFile

Completed in 115 milliseconds