Lines Matching refs:CompressedSection
133 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(CompressedSection &) { in visit() argument
513 Error BinarySectionWriter::visit(const CompressedSection &Sec) { in visit()
520 Error ELFSectionWriter<ELFT>::visit(const CompressedSection &Sec) { in visit()
548 Expected<CompressedSection>
549 CompressedSection::create(const SectionBase &Sec, in create()
552 CompressedSection Section(Sec, CompressionType, Err); in create()
559 Expected<CompressedSection>
560 CompressedSection::create(ArrayRef<uint8_t> CompressedData, in create()
563 return CompressedSection(CompressedData, DecompressedSize, DecompressedAlign); in create()
566 CompressedSection::CompressedSection(const SectionBase &Sec, in CompressedSection() function in CompressedSection
598 CompressedSection::CompressedSection(ArrayRef<uint8_t> CompressedData, in CompressedSection() function in CompressedSection
606 Error CompressedSection::accept(SectionVisitor &Visitor) const { in accept()
610 Error CompressedSection::accept(MutableSectionVisitor &Visitor) { in accept()
1747 Expected<CompressedSection> NewSection = in makeSection()
1748 CompressedSection::create(*Data, DecompressedSize, DecompressedAlign); in makeSection()
1752 return Obj.addSection<CompressedSection>(std::move(*NewSection)); in makeSection()