Lines Matching refs:SLC

322       MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command);  in getSectionsAndSymbols()  local
323 StringRef SegName = SLC.segname; in getSectionsAndSymbols()
326 BaseSegmentAddress = SLC.vmaddr; in getSectionsAndSymbols()
329 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols() local
330 StringRef SegName = SLC.segname; in getSectionsAndSymbols()
333 BaseSegmentAddress = SLC.vmaddr; in getSectionsAndSymbols()
1055 MachO::segment_command SLC = O->getSegmentLoadCommand(Command); in PrintFunctionStarts() local
1056 if (StringRef(SLC.segname) == "__TEXT") { in PrintFunctionStarts()
1057 BaseSegmentAddress = SLC.vmaddr; in PrintFunctionStarts()
1061 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in PrintFunctionStarts() local
1062 if (StringRef(SLC.segname) == "__TEXT") { in PrintFunctionStarts()
1063 BaseSegmentAddress = SLC.vmaddr; in PrintFunctionStarts()
10121 MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command); in PrintLoadCommands() local
10122 const char *sg_segname = SLC.segname; in PrintLoadCommands()
10123 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
10124 SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot, in PrintLoadCommands()
10125 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(), in PrintLoadCommands()
10127 for (unsigned j = 0; j < SLC.nsects; j++) { in PrintLoadCommands()
10131 SLC.cmd, sg_segname, filetype, Buf.size(), verbose); in PrintLoadCommands()