• Home
  • Raw
  • Download

Lines Matching refs:LC

26       MachOYAML::LoadCommand &LC,
62 memcpy((void *)&(LC.Data.LCStruct##_data), LoadCmd.Ptr, \
65 MachO::swapStruct(LC.Data.LCStruct##_data); \
67 processLoadCommandData<MachO::LCStruct>(LC, LoadCmd, *Y.get())) \
196 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
205 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
209 LoadCmd, LC.Sections, Y); in processLoadCommandData()
215 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
219 LoadCmd, LC.Sections, Y); in processLoadCommandData()
224 readString(MachOYAML::LoadCommand &LC, in readString() argument
229 LC.PayloadString = StringRef(Start, Size).str(); in readString()
236 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
239 return readString<MachO::dylib_command>(LC, LoadCmd); in processLoadCommandData()
245 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
248 return readString<MachO::dylinker_command>(LC, LoadCmd); in processLoadCommandData()
254 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
257 return readString<MachO::rpath_command>(LC, LoadCmd); in processLoadCommandData()
263 MachOYAML::LoadCommand &LC, in processLoadCommandData() argument
267 auto NTools = LC.Data.build_version_command_data.ntools; in processLoadCommandData()
274 LC.Tools.push_back(BV); in processLoadCommandData()
303 MachOYAML::LoadCommand LC; in dumpLoadCommands() local
307 memcpy((void *)&(LC.Data.load_command_data), LoadCmd.Ptr, in dumpLoadCommands()
310 MachO::swapStruct(LC.Data.load_command_data); in dumpLoadCommands()
312 processLoadCommandData<MachO::load_command>(LC, LoadCmd, in dumpLoadCommands()
323 LC.PayloadBytes.insert(LC.PayloadBytes.end(), EndPtr, in dumpLoadCommands()
327 LC.ZeroPadBytes = RemainingBytes; in dumpLoadCommands()
328 Y->LoadCommands.push_back(std::move(LC)); in dumpLoadCommands()