Home
last modified time | relevance | path

Searched refs:OwnedDataSection (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h36 class OwnedDataSection; variable
78 virtual Error visit(const OwnedDataSection &Sec) = 0;
95 virtual Error visit(OwnedDataSection &Sec) = 0;
115 Error visit(const OwnedDataSection &Sec) override;
159 Error visit(OwnedDataSection &Sec) override;
292 Error visit(const OwnedDataSection &Sec) final;
498 class OwnedDataSection : public SectionBase {
504 OwnedDataSection(StringRef SecName, ArrayRef<uint8_t> Data) in OwnedDataSection() function
512 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags, in OwnedDataSection() function
H A DObject.cpp87 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(OwnedDataSection &) { in visit() argument
389 Error IHexSectionWriterBase::visit(const OwnedDataSection &Sec) { in visit()
432 Error SectionWriter::visit(const OwnedDataSection &Sec) { in visit()
496 Error OwnedDataSection::accept(SectionVisitor &Visitor) const { in accept()
500 Error OwnedDataSection::accept(MutableSectionVisitor &Visitor) { in accept()
504 void OwnedDataSection::appendHexData(StringRef HexData) { in appendHexData()
1333 OwnedDataSection *Section = nullptr; in addDataSections()
1349 Section = &Obj->addSection<OwnedDataSection>( in addDataSections()
H A DELFObjcopy.cpp678 OwnedDataSection &NewSection = in handleArgs()
679 Obj.addSection<OwnedDataSection>(SecName, Data); in handleArgs()