Lines Matching refs:SLC
309 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command); in getSectionsAndSymbols() local
310 StringRef SegName = SLC.segname; in getSectionsAndSymbols()
313 BaseSegmentAddress = SLC.vmaddr; in getSectionsAndSymbols()
316 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols() local
317 StringRef SegName = SLC.segname; in getSectionsAndSymbols()
320 BaseSegmentAddress = SLC.vmaddr; in getSectionsAndSymbols()
1042 MachO::segment_command SLC = O->getSegmentLoadCommand(Command); in PrintFunctionStarts() local
1043 if (StringRef(SLC.segname) == "__TEXT") { in PrintFunctionStarts()
1044 BaseSegmentAddress = SLC.vmaddr; in PrintFunctionStarts()
1048 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in PrintFunctionStarts() local
1049 if (StringRef(SLC.segname) == "__TEXT") { in PrintFunctionStarts()
1050 BaseSegmentAddress = SLC.vmaddr; in PrintFunctionStarts()
1205 MachO::segment_command SLC = O->getSegmentLoadCommand(Command); in GetSegmentNames() local
1206 Ret.push_back(SLC.segname); in GetSegmentNames()
1208 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in GetSegmentNames() local
1209 Ret.push_back(SLC.segname); in GetSegmentNames()
9985 MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command); in PrintLoadCommands() local
9986 const char *sg_segname = SLC.segname; in PrintLoadCommands()
9987 PrintSegmentCommand(SLC.cmd, SLC.cmdsize, SLC.segname, SLC.vmaddr, in PrintLoadCommands()
9988 SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot, in PrintLoadCommands()
9989 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(), in PrintLoadCommands()
9991 for (unsigned j = 0; j < SLC.nsects; j++) { in PrintLoadCommands()
9995 SLC.cmd, sg_segname, filetype, Buf.size(), verbose); in PrintLoadCommands()