Lines Matching refs:SLC
127 MachO::segment_command SLC = Obj.getSegmentLoadCommand(LCI); in DumpSegmentCommand() local
129 DumpSegmentCommandData(StringRef(SLC.segname, 16), SLC.vmaddr, in DumpSegmentCommand()
130 SLC.vmsize, SLC.fileoff, SLC.filesize, in DumpSegmentCommand()
131 SLC.maxprot, SLC.initprot, SLC.nsects, SLC.flags); in DumpSegmentCommand()
135 for (unsigned i = 0; i != SLC.nsects; ++i) { in DumpSegmentCommand()
150 MachO::segment_command_64 SLC = Obj.getSegment64LoadCommand(LCI); in DumpSegment64Command() local
151 DumpSegmentCommandData(StringRef(SLC.segname, 16), SLC.vmaddr, in DumpSegment64Command()
152 SLC.vmsize, SLC.fileoff, SLC.filesize, in DumpSegment64Command()
153 SLC.maxprot, SLC.initprot, SLC.nsects, SLC.flags); in DumpSegment64Command()
157 for (unsigned i = 0; i != SLC.nsects; ++i) { in DumpSegment64Command()
189 MachO::symtab_command SLC = Obj.getSymtabLoadCommand(); in DumpSymtabCommand() local
191 outs() << " ('symoff', " << SLC.symoff << ")\n"; in DumpSymtabCommand()
192 outs() << " ('nsyms', " << SLC.nsyms << ")\n"; in DumpSymtabCommand()
193 outs() << " ('stroff', " << SLC.stroff << ")\n"; in DumpSymtabCommand()
194 outs() << " ('strsize', " << SLC.strsize << ")\n"; in DumpSymtabCommand()