HomeSort by relevance Sort by last modified time
    Searched full:relocation_iterator (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm-c/
Object.h 133 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) {
134 return reinterpret_cast<relocation_iterator*>(SI);
138 wrap(const relocation_iterator *SI) {
140 (const_cast<relocation_iterator*>(SI));
  /external/llvm/include/llvm/Object/
COFF.h 137 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
138 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
175 const coff_relocation *getCOFFRelocation(relocation_iterator &It) const;
MachO.h 87 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
88 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
ObjectFile.h 132 typedef content_iterator<RelocationRef> relocation_iterator; typedef in namespace:llvm::object
170 relocation_iterator begin_relocations() const;
171 relocation_iterator end_relocations() const;
327 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const = 0;
328 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const = 0;
531 inline relocation_iterator SectionRef::begin_relocations() const {
535 inline relocation_iterator SectionRef::end_relocations() const {
ELF.h 686 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
687 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
    [all...]
  /external/llvm/lib/Object/
Object.cpp 117 relocation_iterator SI = (*unwrap(Section))->begin_relocations();
118 return wrap(new relocation_iterator(SI));
COFFObjectFile.cpp 408 relocation_iterator COFFObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
416 return relocation_iterator(RelocationRef(ret, this));
419 relocation_iterator COFFObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
430 return relocation_iterator(RelocationRef(ret, this));
742 relocation_iterator &It) const {
MachOObjectFile.cpp 686 relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
689 return relocation_iterator(RelocationRef(ret, this));
691 relocation_iterator MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
705 return relocation_iterator(RelocationRef(ret, this));
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 255 for (relocation_iterator RI = SI->begin_relocations(),
llvm-objdump.cpp 245 for (relocation_iterator ri = i->begin_relocations(),
407 for (relocation_iterator ri = si->begin_relocations(),
MachODump.cpp 365 for (relocation_iterator RI = Sections[SectIdx].begin_relocations(),
  /external/llvm/utils/obj2yaml/
coff2yaml.cpp 280 for (llvm::object::relocation_iterator rIter = iter->begin_relocations();
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 146 for (relocation_iterator i = si->begin_relocations(),
224 for (relocation_iterator i = Section.begin_relocations(),
RuntimeDyldELF.cpp 420 for (relocation_iterator i = si->begin_relocations(),
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 546 for (object::relocation_iterator reloc_i = i->begin_relocations(),

Completed in 247 milliseconds