Lines Matching defs:LC
123 LoadCommand LC;
140 LC.Sections = std::move(*Sections);
156 LC.Sections = std::move(*Sections);
191 memcpy((void *)&(LC.MachOLoadCommand.LCStruct##_data), LoadCmd.Ptr, \
194 MachO::swapStruct(LC.MachOLoadCommand.LCStruct##_data); \
196 LC.Payload = ArrayRef<uint8_t>( \
204 memcpy((void *)&(LC.MachOLoadCommand.load_command_data), LoadCmd.Ptr,
207 MachO::swapStruct(LC.MachOLoadCommand.load_command_data);
209 LC.Payload = ArrayRef<uint8_t>(
216 O.LoadCommands.push_back(std::move(LC));
250 for (auto &LC : O.LoadCommands)
251 for (std::unique_ptr<Section> &Sec : LC.Sections)
254 for (LoadCommand &LC : O.LoadCommands)
255 for (std::unique_ptr<Section> &Sec : LC.Sections)
300 const MachO::linkedit_data_command &LC =
303 arrayRefFromStringRef(MachOObj.getData().substr(LC.dataoff, LC.datasize));
351 for (const LoadCommand &LC : O.LoadCommands)
352 for (const std::unique_ptr<Section> &Sec : LC.Sections)