Lines Matching refs:WriteFully
168 bool WriteFully(const void* buffer, size_t byte_count) override { in WriteFully() function
170 return owner_->stream_.WriteFully(buffer, byte_count); in WriteFully()
250 this->WriteFully(cache_.data(), cache_.size()); in Write()
326 this->WriteFully(name.data(), name.length()); in Write()
328 this->WriteFully(&null_terminator, sizeof(null_terminator)); in Write()
403 this->WriteFully(&syms_.front(), sizeof(Elf_Sym)); in WriteCachedSection()
437 this->WriteFully("GNU", 4); // name. in Write()
440 this->WriteFully(std::string(kBuildIdLen, '\0').c_str(), kBuildIdLen); // desc. in Write()
451 return this->WriteFully(&v, sizeof(v)); in WriteUint32()
515 s->WriteFully(buffer->data(), buffer->size()); in WriteSection()
569 stream_.WriteFully(shdrs.data(), shdrs.size() * sizeof(shdrs[0])); in End()
593 stream_.WriteFully(&elf_header, sizeof(elf_header)); in End()
594 stream_.WriteFully(phdrs.data(), phdrs.size() * sizeof(phdrs[0])); in End()
793 stream_.WriteFully(build_id, kBuildIdLen); in WriteBuildId()