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(); \
119 for (LoadCommand &LC : O.LoadCommands) {
120 auto &MLC = LC.MachOLoadCommand;
145 assert(LC.Sections.empty() && "__LINKEDIT segment has sections");
154 for (std::unique_ptr<Section> &Sec : LC.Sections) {
194 sizeof(MachO::section) * LC.Sections.size();
195 MLC.segment_command_data.nsects = LC.Sections.size();
203 sizeof(MachO::section_64) * LC.Sections.size();
204 MLC.segment_command_64_data.nsects = LC.Sections.size();
216 for (LoadCommand &LC : O.LoadCommands)
217 for (std::unique_ptr<Section> &Sec : LC.Sections) {
243 for (const auto &LC : O.LoadCommands) {
244 switch (LC.MachOLoadCommand.load_command_data.cmd) {
337 for (LoadCommand &LC : O.LoadCommands) {
338 auto &MLC = LC.MachOLoadCommand;