Home
last modified time | relevance | path

Searched refs:Sect (Results 1 – 8 of 8) sorted by relevance

/external/llvm/tools/macho-dump/
Dmacho-dump.cpp136 MachO::section Sect = Obj.getSection(LCI, i); in DumpSegmentCommand() local
137 DumpSectionData(Obj, i, StringRef(Sect.sectname, 16), in DumpSegmentCommand()
138 StringRef(Sect.segname, 16), Sect.addr, in DumpSegmentCommand()
139 Sect.size, Sect.offset, Sect.align, in DumpSegmentCommand()
140 Sect.reloff, Sect.nreloc, Sect.flags, in DumpSegmentCommand()
141 Sect.reserved1, Sect.reserved2); in DumpSegmentCommand()
158 MachO::section_64 Sect = Obj.getSection64(LCI, i); in DumpSegment64Command() local
160 DumpSectionData(Obj, i, StringRef(Sect.sectname, 16), in DumpSegment64Command()
161 StringRef(Sect.segname, 16), Sect.addr, in DumpSegment64Command()
162 Sect.size, Sect.offset, Sect.align, in DumpSegment64Command()
[all …]
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp296 MachO::section Sect = Obj->getSection(Sec); in getSection() local
297 Section.Address = Sect.addr; in getSection()
298 Section.Size = Sect.size; in getSection()
299 Section.Offset = Sect.offset; in getSection()
300 Section.Alignment = Sect.align; in getSection()
301 Section.RelocationTableOffset = Sect.reloff; in getSection()
302 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
303 Section.Flags = Sect.flags; in getSection()
304 Section.Reserved1 = Sect.reserved1; in getSection()
305 Section.Reserved2 = Sect.reserved2; in getSection()
[all …]
/external/llvm/lib/Object/
DMachOObjectFile.cpp240 MachO::section_64 Sect = O->getSection64(Sec); in getSectionFlags() local
241 return Sect.flags; in getSectionFlags()
243 MachO::section Sect = O->getSection(Sec); in getSectionFlags() local
244 return Sect.flags; in getSectionFlags()
575 MachO::section_64 Sect = getSection64(Sec); in getSectionContents() local
576 Offset = Sect.offset; in getSectionContents()
577 Size = Sect.size; in getSectionContents()
579 MachO::section Sect = getSection(Sec); in getSectionContents() local
580 Offset = Sect.offset; in getSectionContents()
581 Size = Sect.size; in getSectionContents()
[all …]
DObject.cpp99 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
101 if (std::error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect))) in LLVMMoveToContainingSection()
/external/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/wpa_supplicant_8/wpa_supplicant/
Dtodo.txt19 * OTP Extended Responses (Sect. 5.5)
22 RFC 3748 Sect. 4.2
/external/llvm/lib/MC/
DMCMachOStreamer.cpp71 void ChangeSection(const MCSection *Sect, const MCExpr *Subsect) override;
/external/llvm/tools/llvm-objdump/
DMachODump.cpp859 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(), in DumpLiteralPointerSection() local
864 if (Sect == LiteralSections.end()) { in DumpLiteralPointerSection()
869 uint64_t SectAddress = Sect->getAddress(); in DumpLiteralPointerSection()
870 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection()
873 Sect->getName(SectName); in DumpLiteralPointerSection()
874 DataRefImpl Ref = Sect->getRawDataRefImpl(); in DumpLiteralPointerSection()
888 Sect->getContents(BytesStr); in DumpLiteralPointerSection()