Lines Matching refs:Section

167                        MachOSection &Section) {  in getSection()  argument
170 Section.Address = Sect.addr; in getSection()
171 Section.Size = Sect.size; in getSection()
172 Section.Offset = Sect.offset; in getSection()
173 Section.Alignment = Sect.align; in getSection()
174 Section.RelocationTableOffset = Sect.reloff; in getSection()
175 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
176 Section.Flags = Sect.flags; in getSection()
177 Section.Reserved1 = Sect.reserved1; in getSection()
178 Section.Reserved2 = Sect.reserved2; in getSection()
182 Section.Address = Sect.addr; in getSection()
183 Section.Size = Sect.size; in getSection()
184 Section.Offset = Sect.offset; in getSection()
185 Section.Alignment = Sect.align; in getSection()
186 Section.RelocationTableOffset = Sect.reloff; in getSection()
187 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
188 Section.Flags = Sect.flags; in getSection()
189 Section.Reserved1 = Sect.reserved1; in getSection()
190 Section.Reserved2 = Sect.reserved2; in getSection()
234 MachOSection Section; in printSections() local
235 getSection(Obj, SecI->getRawDataRefImpl(), Section); in printSections()
250 W.printHex ("Address", Section.Address); in printSections()
251 W.printHex ("Size", Section.Size); in printSections()
252 W.printNumber("Offset", Section.Offset); in printSections()
253 W.printNumber("Alignment", Section.Alignment); in printSections()
254 W.printHex ("RelocationOffset", Section.RelocationTableOffset); in printSections()
255 W.printNumber("RelocationCount", Section.NumRelocationTableEntries); in printSections()
256 W.printEnum ("Type", Section.Flags & 0xFF, in printSections()
258 W.printFlags ("Attributes", Section.Flags >> 8, in printSections()
260 W.printHex ("Reserved1", Section.Reserved1); in printSections()
261 W.printHex ("Reserved2", Section.Reserved2); in printSections()