Lines Matching refs:SLC
127 macho::SegmentLoadCommand SLC = Obj.getSegmentLoadCommand(LCI);
129 DumpSegmentCommandData(StringRef(SLC.Name, 16), SLC.VMAddress,
130 SLC.VMSize, SLC.FileOffset, SLC.FileSize,
131 SLC.MaxVMProtection, SLC.InitialVMProtection,
132 SLC.NumSections, SLC.Flags);
136 for (unsigned i = 0; i != SLC.NumSections; ++i) {
152 macho::Segment64LoadCommand SLC = Obj.getSegment64LoadCommand(LCI);
153 DumpSegmentCommandData(StringRef(SLC.Name, 16), SLC.VMAddress,
154 SLC.VMSize, SLC.FileOffset, SLC.FileSize,
155 SLC.MaxVMProtection, SLC.InitialVMProtection,
156 SLC.NumSections, SLC.Flags);
160 for (unsigned i = 0; i != SLC.NumSections; ++i) {
193 macho::SymtabLoadCommand SLC = Obj.getSymtabLoadCommand();
195 outs() << " ('symoff', " << SLC.SymbolTableOffset << ")\n";
196 outs() << " ('nsyms', " << SLC.NumSymbolTableEntries << ")\n";
197 outs() << " ('stroff', " << SLC.StringTableOffset << ")\n";
198 outs() << " ('strsize', " << SLC.StringTableSize << ")\n";