Lines Matching defs:LC
28 for (const LoadCommand &LC : O.LoadCommands) {
29 const MachO::macho_load_command &MLC = LC.MachOLoadCommand;
34 sizeof(MachO::section) * LC.Sections.size();
38 sizeof(MachO::section_64) * LC.Sections.size();
45 Size += sizeof(MachO::LCStruct) + LC.Payload.size(); \
124 for (LoadCommand &LC : O.LoadCommands) {
125 auto &MLC = LC.MachOLoadCommand;
150 assert(LC.Sections.empty() && "__LINKEDIT segment has sections");
159 for (std::unique_ptr<Section> &Sec : LC.Sections) {
199 sizeof(MachO::section) * LC.Sections.size();
200 MLC.segment_command_data.nsects = LC.Sections.size();
208 sizeof(MachO::section_64) * LC.Sections.size();
209 MLC.segment_command_64_data.nsects = LC.Sections.size();
221 for (LoadCommand &LC : O.LoadCommands)
222 for (std::unique_ptr<Section> &Sec : LC.Sections) {
248 for (const auto &LC : O.LoadCommands) {
249 switch (LC.MachOLoadCommand.load_command_data.cmd) {
342 for (LoadCommand &LC : O.LoadCommands) {
343 auto &MLC = LC.MachOLoadCommand;