Home
last modified time | relevance | path

Searched refs:MachORebaseEntry (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachO.h167 class MachORebaseEntry {
169 MachORebaseEntry(Error *Err, const MachOObjectFile *O,
179 bool operator==(const MachORebaseEntry &) const;
202 using rebase_iterator = content_iterator<MachORebaseEntry>;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp3139 MachORebaseEntry::MachORebaseEntry(Error *E, const MachOObjectFile *O, in MachORebaseEntry() function in MachORebaseEntry
3144 void MachORebaseEntry::moveToFirst() { in moveToFirst()
3149 void MachORebaseEntry::moveToEnd() { in moveToEnd()
3155 void MachORebaseEntry::moveNext() { in moveNext()
3404 uint64_t MachORebaseEntry::readULEB128(const char **error) { in readULEB128()
3413 int32_t MachORebaseEntry::segmentIndex() const { return SegmentIndex; } in segmentIndex()
3415 uint64_t MachORebaseEntry::segmentOffset() const { return SegmentOffset; } in segmentOffset()
3417 StringRef MachORebaseEntry::typeName() const { in typeName()
3431 StringRef MachORebaseEntry::segmentName() const { in segmentName()
3437 StringRef MachORebaseEntry::sectionName() const { in sectionName()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp10322 for (const object::MachORebaseEntry &Entry : Obj->rebaseTable(Err)) { in printMachORebaseTable()