Searched refs:addSection (Results 1 – 10 of 10) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
H A D | COFFObjcopy.cpp | 60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents, in addSection() function 90 addSection(Obj, ".gnu_debuglink", *Contents, in addGnuDebugLink() 241 addSection( in handleArgs()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
H A D | Object.cpp | 1261 auto &StrTab = Obj->addSection<StringTableSection>(); in addStrTab() 1269 auto &SymTab = Obj->addSection<SymbolTableSection>(); in addSymTab() 1293 auto &DataSection = Obj->addSection<Section>(Data); in addData() 1345 Section = &Obj->addSection<OwnedDataSection>( in addDataSections() 1446 Seg.addSection(&Sec); in readProgramHeaders() 1678 return Obj.addSection<DynamicRelocationSection>(*Data); in makeSection() 1682 return Obj.addSection<RelocationSection>(); in makeSection() 1689 return Obj.addSection<Section>(*Data); in makeSection() 1693 return Obj.addSection<StringTableSection>(); in makeSection() 1699 return Obj.addSection<Section>(*Data); in makeSection() [all …]
|
H A D | ELFObjcopy.cpp | 486 return &Obj.addSection<CompressedSection>(std::move(*NewSection)); in replaceAndRemoveSections() 495 return &Obj.addSection<DecompressedSection>(*CS); in replaceAndRemoveSections() 625 Obj.addSection<OwnedDataSection>(SecName, Data); in handleArgs() 631 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink, in handleArgs()
|
H A D | Object.h | 475 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function 1082 template <class T, class... Ts> T &addSection(Ts &&... Args) { in addSection() function
|
/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | EncoreBootImageGenerator.cpp | 180 image->addSection(newSection); in processOperationSection() 295 image->addSection(dataSection); in processDataSection()
|
/netbsd-src/external/bsd/elftosb/dist/common/ |
H A D | ELFSourceFile.cpp | 227 source->addSection(index); in createDataSource() 416 void ELFSourceFile::ELFDataSource::addSection(unsigned sectionIndex) in addSection() function in ELFSourceFile::ELFDataSource
|
H A D | ELFSourceFile.h | 204 void addSection(unsigned sectionIndex);
|
H A D | EncoreBootImage.h | 890 void addSection(Section * newSection);
|
H A D | EncoreBootImage.cpp | 42 void EncoreBootImage::addSection(Section * newSection) in addSection() function in EncoreBootImage
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
H A D | MachOObjcopy.cpp | 277 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) { in addSection() function 364 if (Error E = addSection(SecName, File, Obj)) in handleArgs()
|