Home
last modified time | relevance | path

Searched refs:ExportEntry (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Object/
DMachOObjectFile.cpp1236 ExportEntry::ExportEntry(ArrayRef<uint8_t> T) in ExportEntry() function in ExportEntry
1239 void ExportEntry::moveToFirst() { in moveToFirst()
1244 void ExportEntry::moveToEnd() { in moveToEnd()
1249 bool ExportEntry::operator==(const ExportEntry &Other) const { in operator ==()
1267 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr) { in readULEB128()
1278 StringRef ExportEntry::name() const { in name()
1282 uint64_t ExportEntry::flags() const { in flags()
1286 uint64_t ExportEntry::address() const { in address()
1290 uint64_t ExportEntry::other() const { in other()
1294 StringRef ExportEntry::otherName() const { in otherName()
[all …]
/external/llvm/include/llvm/Object/
DMachO.h57 class ExportEntry {
59 ExportEntry(ArrayRef<uint8_t> Trie);
68 bool operator==(const ExportEntry &) const;
101 typedef content_iterator<ExportEntry> export_iterator;
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp898 for (const auto &ExportEntry : COFFObj->export_directories()) { in DisassembleObject() local
900 error(ExportEntry.getSymbolName(Name)); in DisassembleObject()
904 error(ExportEntry.getExportRVA(RVA)); in DisassembleObject()
DMachODump.cpp8682 for (const llvm::object::ExportEntry &Entry : Obj->exports()) { in printMachOExportsTrie()