Searched defs:Sect (Results 1 - 5 of 5) sorted by relevance

/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp58 const object::coff_section *Sect = Obj.getCOFFSection(iter); local
60 Sec.Name = Sect->Name; // FIXME: check the null termination!
61 uint32_t Characteristics = Sect->Characteristics;
66 Obj.getSectionContents(Sect, sectionData);
/external/llvm/lib/Object/
H A DObject.cpp90 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, argument
92 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
H A DMachOObjectFile.cpp406 macho::Section64 Sect = O->getSection64(Sec); local
407 return Sect.Flags;
409 macho::Section Sect = O->getSection(Sec); local
410 return Sect.Flags;
685 macho::Section64 Sect = getSection64(Sec); local
686 Res = Sect.Address;
688 macho::Section Sect = getSection(Sec); local
689 Res = Sect.Address;
697 macho::Section64 Sect = getSection64(Sec); local
698 Res = Sect
700 macho::Section Sect = getSection(Sec); local
713 macho::Section64 Sect = getSection64(Sec); local
717 macho::Section Sect =getSection(Sec); local
730 macho::Section64 Sect = getSection64(Sec); local
733 macho::Section Sect = getSection(Sec); local
820 macho::Section64 Sect = getSection64(Sec); local
823 macho::Section Sect = getSection(Sec); local
837 macho::Section64 Sect = getSection64(Sec); local
841 macho::Section Sect = getSection(Sec); local
[all...]
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp169 macho::Section Sect = Obj->getSection(Sec); local
170 Section.Address = Sect.Address;
171 Section.Size = Sect.Size;
172 Section.Offset = Sect.Offset;
173 Section.Alignment = Sect.Align;
174 Section.RelocationTableOffset = Sect.RelocationTableOffset;
175 Section.NumRelocationTableEntries = Sect.NumRelocationTableEntries;
176 Section.Flags = Sect.Flags;
177 Section.Reserved1 = Sect.Reserved1;
178 Section.Reserved2 = Sect
181 macho::Section64 Sect = Obj->getSection64(Sec); local
[all...]
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp137 macho::Section Sect = Obj.getSection(LCI, i); local
138 DumpSectionData(Obj, i, StringRef(Sect.Name, 16),
139 StringRef(Sect.SegmentName, 16), Sect.Address,
140 Sect.Size, Sect.Offset, Sect.Align,
141 Sect.RelocationTableOffset,
142 Sect.NumRelocationTableEntries, Sect
161 macho::Section64 Sect = Obj.getSection64(LCI, i); local
[all...]

Completed in 117 milliseconds