Lines Matching defs:LC
122 LoadCommand LC;
139 LC.Sections = std::move(*Sections);
155 LC.Sections = std::move(*Sections);
194 memcpy((void *)&(LC.MachOLoadCommand.LCStruct##_data), LoadCmd.Ptr, \
197 MachO::swapStruct(LC.MachOLoadCommand.LCStruct##_data); \
199 LC.Payload = ArrayRef<uint8_t>( \
207 memcpy((void *)&(LC.MachOLoadCommand.load_command_data), LoadCmd.Ptr,
210 MachO::swapStruct(LC.MachOLoadCommand.load_command_data);
212 LC.Payload = ArrayRef<uint8_t>(
219 O.LoadCommands.push_back(std::move(LC));
253 for (auto &LC : O.LoadCommands)
254 for (std::unique_ptr<Section> &Sec : LC.Sections)
257 for (LoadCommand &LC : O.LoadCommands)
258 for (std::unique_ptr<Section> &Sec : LC.Sections)
303 const MachO::linkedit_data_command &LC =
306 arrayRefFromStringRef(MachOObj.getData().substr(LC.dataoff, LC.datasize));
354 for (const LoadCommand &LC : O.LoadCommands)
355 for (const std::unique_ptr<Section> &Sec : LC.Sections)