Searched refs:RelocationRef (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/Object/ |
D | ObjectFile.h | 95 class RelocationRef { 100 RelocationRef() : OwningObject(NULL) { } in RelocationRef() function 102 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner); 104 bool operator==(const RelocationRef &Other) const; 106 error_code getNext(RelocationRef &Result) const; 132 typedef content_iterator<RelocationRef> relocation_iterator; 324 friend class RelocationRef; variable 326 RelocationRef &Res) const = 0; 529 inline RelocationRef::RelocationRef(DataRefImpl RelocationP, in RelocationRef() function 534 inline bool RelocationRef::operator==(const RelocationRef &Other) const { [all …]
|
D | MachO.h | 85 RelocationRef &Res) const;
|
D | COFF.h | 139 RelocationRef &Res) const;
|
D | ELF.h | 569 RelocationRef &Res) const; 1201 return relocation_iterator(RelocationRef(RelData, this)); 1218 return relocation_iterator(RelocationRef(RelData, this)); 1225 RelocationRef &Result) const { 1247 Result = RelocationRef(Rel, this);
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 164 static bool RelocAddressLess(RelocationRef a, RelocationRef b) { in RelocAddressLess() 220 std::vector<RelocationRef> Rels; in DisassembleObject() 294 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject() 295 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 404 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelBegin() 418 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelEnd() 690 RelocationRef &Res) const { in getRelocationNext() 693 Res = RelocationRef(Rel, this); in getRelocationNext()
|
D | MachOObjectFile.cpp | 648 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelBegin() 664 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelEnd() 697 RelocationRef &Res) const { in getRelocationNext() 699 Res = RelocationRef(Rel, this); in getRelocationNext()
|