Searched refs:OwningObject (Results 1 – 5 of 5) sorted by relevance
/external/llvm/include/llvm/Object/ |
D | ObjectFile.h | 42 const ObjectFile *OwningObject; variable 45 RelocationRef() : OwningObject(nullptr) { } in RelocationRef() 72 const ObjectFile *OwningObject; variable 75 SectionRef() : OwningObject(nullptr) { } in SectionRef() 343 , OwningObject(Owner) {} in SectionRef() 358 return OwningObject->moveSectionNext(SectionPimpl); in moveNext() 362 return OwningObject->getSectionName(SectionPimpl, Result); in getName() 366 return OwningObject->getSectionAddress(SectionPimpl); in getAddress() 370 return OwningObject->getSectionSize(SectionPimpl); in getSize() 374 return OwningObject->getSectionContents(SectionPimpl, Result); in getContents() [all …]
|
D | SymbolicFile.h | 87 const SymbolicFile *OwningObject; variable 107 BasicSymbolRef() : OwningObject(nullptr) { } in BasicSymbolRef() 174 : SymbolPimpl(SymbolP), OwningObject(Owner) {} in BasicSymbolRef() 185 return OwningObject->moveSymbolNext(SymbolPimpl); in moveNext() 189 return OwningObject->printSymbolName(OS, SymbolPimpl); in printName() 193 return OwningObject->getSymbolFlags(SymbolPimpl); in getFlags() 201 return OwningObject; in getObject()
|
D | COFF.h | 791 ImportDirectoryEntryRef() : OwningObject(nullptr) {} in ImportDirectoryEntryRef() 794 : ImportTable(Table), Index(I), OwningObject(Owner) {} in ImportDirectoryEntryRef() 816 const COFFObjectFile *OwningObject; variable 821 DelayImportDirectoryEntryRef() : OwningObject(nullptr) {} in DelayImportDirectoryEntryRef() 824 : Table(T), Index(I), OwningObject(Owner) {} in DelayImportDirectoryEntryRef() 841 const COFFObjectFile *OwningObject; variable 847 ExportDirectoryEntryRef() : OwningObject(nullptr) {} in ExportDirectoryEntryRef() 850 : ExportTable(Table), Index(I), OwningObject(Owner) {} in ExportDirectoryEntryRef() 864 const COFFObjectFile *OwningObject; variable 869 ImportedSymbolRef() : OwningObject(nullptr) {} in ImportedSymbolRef() [all …]
|
D | MachO.h | 31 const ObjectFile *OwningObject; variable 34 DiceRef() : OwningObject(nullptr) { } in DiceRef() 468 : DicePimpl(DiceP) , OwningObject(Owner) {} in DiceRef() 490 static_cast<const MachOObjectFile *>(OwningObject); in getOffset() 498 static_cast<const MachOObjectFile *>(OwningObject); in getLength() 506 static_cast<const MachOObjectFile *>(OwningObject); in getKind() 517 return OwningObject; in getObjectFile()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 1166 OwningObject); in imported_symbol_begin() 1172 OwningObject); in imported_symbol_end() 1183 OwningObject->getRvaPtr(ImportTable[Index].NameRVA, IntPtr)) in getName() 1205 if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) in getImportLookupEntry() 1223 OwningObject); in imported_symbol_begin() 1229 OwningObject); in imported_symbol_end() 1239 if (std::error_code EC = OwningObject->getRvaPtr(Table[Index].Name, IntPtr)) in getName() 1254 AddrIndex * (OwningObject->is64() ? 8 : 4); in getImportAddress() 1256 if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) in getImportAddress() 1258 if (OwningObject->is64()) in getImportAddress() [all …]
|