HomeSort by relevance Sort by last modified time
    Searched refs:DataRefImpl (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Object/
MachO.h 55 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
56 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
57 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
58 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
59 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
60 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
61 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
62 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
63 virtual error_code getSymbolSection(DataRefImpl Symb,
66 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const
    [all...]
COFF.h 104 const coff_symbol *toSymb(DataRefImpl Symb) const;
105 const coff_section *toSec(DataRefImpl Sec) const;
106 const coff_relocation *toRel(DataRefImpl Rel) const;
109 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
110 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
111 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
112 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
113 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
114 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
115 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const
    [all...]
ObjectFile.h 30 union DataRefImpl {
41 DataRefImpl() {
42 std::memset(this, 0, sizeof(DataRefImpl));
79 static bool operator ==(const DataRefImpl &a, const DataRefImpl &b) {
82 return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
85 static bool operator <(const DataRefImpl &a, const DataRefImpl &b) {
88 return std::memcmp(&a, &b, sizeof(DataRefImpl)) < 0;
96 DataRefImpl RelocationPimpl
    [all...]
ELF.h 298 DataRefImpl DynPimpl;
304 DynRefImpl(DataRefImpl DynP, const OwningType *Owner);
314 DataRefImpl getRawDataRefImpl() const;
493 const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
497 bool isRelocationHasAddend(DataRefImpl Rel) const;
502 const Elf_Shdr *getSection(DataRefImpl index) const;
504 const Elf_Rel *getRel(DataRefImpl Rel) const;
505 const Elf_Rela *getRela(DataRefImpl Rela) const;
518 const Elf_Sym *getSymbol(DataRefImpl Symb) const; // FIXME: Should be private?
519 void validateSymbol(DataRefImpl Symb) const
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 55 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const {
73 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const {
90 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
99 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
105 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb,
123 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
141 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb,
163 error_code COFFObjectFile::getSymbolFlags(DataRefImpl Symb,
187 error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb,
208 error_code COFFObjectFile::getSymbolNMTypeChar(DataRefImpl Symb
    [all...]
MachOObjectFile.cpp 36 DataRefImpl DRI;
58 void MachOObjectFile::moveToNextSymbol(DataRefImpl &DRI) const {
74 void MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI,
89 void MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI,
105 error_code MachOObjectFile::getSymbolNext(DataRefImpl DRI,
113 error_code MachOObjectFile::getSymbolName(DataRefImpl DRI,
127 error_code MachOObjectFile::getSymbolFileOffset(DataRefImpl DRI,
152 error_code MachOObjectFile::getSymbolAddress(DataRefImpl DRI,
166 error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
239 error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl DRI
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 124 DataRefImpl ShdrRef = Sec.getRawDataRefImpl();

Completed in 73 milliseconds