Searched refs:ExportEntry (Results 1 – 12 of 12) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | MachOYAML.h | 106 struct ExportEntry { struct 114 std::vector<MachOYAML::ExportEntry> Children; argument 128 MachOYAML::ExportEntry ExportTrie; 177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::ExportEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR() 226 template <> struct MappingTraits<MachOYAML::ExportEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 227 static void mapping(IO &IO, MachOYAML::ExportEntry &ExportEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | MachOYAML.cpp | 190 void MappingTraits<MachOYAML::ExportEntry>::mapping( in mapping() 191 IO &IO, MachOYAML::ExportEntry &ExportEntry) { in mapping() argument 192 IO.mapRequired("TerminalSize", ExportEntry.TerminalSize); in mapping() 193 IO.mapOptional("NodeOffset", ExportEntry.NodeOffset); in mapping() 194 IO.mapOptional("Name", ExportEntry.Name); in mapping() 195 IO.mapOptional("Flags", ExportEntry.Flags); in mapping() 196 IO.mapOptional("Address", ExportEntry.Address); in mapping() 197 IO.mapOptional("Other", ExportEntry.Other); in mapping() 198 IO.mapOptional("ImportName", ExportEntry.ImportName); in mapping() 199 IO.mapOptional("Children", ExportEntry.Children); in mapping()
|
| H A D | MachOEmitter.cpp | 64 void dumpExportEntry(raw_ostream &OS, MachOYAML::ExportEntry &Entry); 446 MachOYAML::ExportEntry &Entry) { in dumpExportEntry()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | objfiles.h | 168 ExportEntry; typedef 409 ExportEntry *export_list;
|
| H A D | somread.c | 661 = (ExportEntry *) obstack_alloc (&objfile->objfile_obstack, in init_export_symbols() 662 export_list_size * sizeof (ExportEntry)); in init_export_symbols()
|
| H A D | ChangeLog-1998 | 1758 * objfiles.h: Add some typedefs: Importentry, ExportEntry.
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Object/ |
| H A D | MachO.h | 73 class ExportEntry { 75 ExportEntry(Error *Err, const MachOObjectFile *O, ArrayRef<uint8_t> Trie); 84 bool operator==(const ExportEntry &) const; 126 using export_iterator = content_iterator<ExportEntry>;
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 2915 ExportEntry::ExportEntry(Error *E, const MachOObjectFile *O, in ExportEntry() function in ExportEntry 2918 void ExportEntry::moveToFirst() { in moveToFirst() 2926 void ExportEntry::moveToEnd() { in moveToEnd() 2931 bool ExportEntry::operator==(const ExportEntry &Other) const { in operator ==() 2949 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) { in readULEB128() 2958 StringRef ExportEntry::name() const { in name() 2962 uint64_t ExportEntry::flags() const { in flags() 2966 uint64_t ExportEntry::address() const { in address() 2970 uint64_t ExportEntry::other() const { in other() 2974 StringRef ExportEntry::otherName() const { in otherName() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | macho2yaml.cpp | 538 MachOYAML::ExportEntry &Entry) { in processExportNode() 567 MachOYAML::ExportEntry()); in processExportNode()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1393 for (const auto &ExportEntry : COFFObj->export_directories()) { in disassembleObject() local 1395 if (Error E = ExportEntry.getSymbolName(Name)) in disassembleObject() 1401 if (Error E = ExportEntry.getExportRVA(RVA)) in disassembleObject()
|
| H A D | MachODump.cpp | 10583 for (const object::ExportEntry &Entry : Obj->exports(Err)) { in printMachOExportsTrie()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 1242 for (const llvm::object::ExportEntry &Entry : MachO.exports(Err)) { in dumpSymbolsFromDLInfoMachO()
|