HomeSort by: relevance | last modified time | path
    Searched refs:addSection (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
COFFObjcopy.cpp 60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents,
90 addSection(Obj, ".gnu_debuglink", *Contents,
232 for (const auto &Flag : Config.AddSection) {
241 addSection(
  /src/external/bsd/elftosb/dist/common/
ELFSourceFile.h 140 * no segments. Segments are created with the addSection() method, which takes
204 void addSection(unsigned sectionIndex);
ELFSourceFile.cpp 227 source->addSection(index);
416 void ELFSourceFile::ELFDataSource::addSection(unsigned sectionIndex)
EncoreBootImage.h 890 void addSection(Section * newSection);
EncoreBootImage.cpp 42 void EncoreBootImage::addSection(Section * newSection)
  /src/external/bsd/elftosb/dist/elftosb2/
EncoreBootImageGenerator.cpp 180 image->addSection(newSection);
295 image->addSection(dataSection);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp 1261 auto &StrTab = Obj->addSection<StringTableSection>();
1269 auto &SymTab = Obj->addSection<SymbolTableSection>();
1293 auto &DataSection = Obj->addSection<Section>(Data);
1345 Section = &Obj->addSection<OwnedDataSection>(
1446 Seg.addSection(&Sec);
1678 return Obj.addSection<DynamicRelocationSection>(*Data);
1682 return Obj.addSection<RelocationSection>();
1689 return Obj.addSection<Section>(*Data);
1693 return Obj.addSection<StringTableSection>();
1699 return Obj.addSection<Section>(*Data)
    [all...]
ELFObjcopy.cpp 209 function_ref<Expected<SectionBase *>(const SectionBase *)> AddSection) {
211 // We can't call `AddSection` while iterating over sections,
221 Expected<SectionBase *> NewSection = AddSection(S);
486 return &Obj.addSection<CompressedSection>(std::move(*NewSection));
495 return &Obj.addSection<DecompressedSection>(*CS);
612 for (const auto &Flag : Config.AddSection) {
625 Obj.addSection<OwnedDataSection>(SecName, Data);
631 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink,
Object.h 475 void addSection(const SectionBase *Sec) { Sections.insert(Sec); }
1082 template <class T, class... Ts> T &addSection(Ts &&... Args) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOObjcopy.cpp 277 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) {
358 for (const auto &Flag : Config.AddSection) {
364 if (Error E = addSection(SecName, File, Obj))

Completed in 27 milliseconds