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

  /art/compiler/linker/
file_output_stream.cc 28 bool FileOutputStream::WriteFully(const void* buffer, size_t byte_count) {
29 return file_->WriteFully(buffer, byte_count);
buffered_output_stream.cc 32 bool BufferedOutputStream::WriteFully(const void* buffer, size_t byte_count) {
37 return out_->WriteFully(buffer, byte_count);
57 success = out_->WriteFully(&buffer_[0], used_);
  /device/generic/goldfish/include/
qemu_pipe.h 45 static bool WriteFully(int fd, const void* data, size_t byte_count) {
104 if (!WriteFully(fd, buff, buffLen + 1)) {
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
qemu_pipe.h 33 static bool WriteFully(int fd, const void* data, size_t byte_count) {
92 if (!WriteFully(fd, buff, buffLen + 1)) {
  /system/core/base/
file.cpp 160 bool WriteFully(int fd, const void* data, size_t byte_count) {
  /art/runtime/base/unix_file/
fd_file.cc 291 bool FdFile::WriteFully(const void* buffer, size_t byte_count) {
333 !WriteFully(buffer.get(), chunk_size)) {

Completed in 528 milliseconds