reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/MachO.h
 1139 inline void swapStruct(sub_umbrella_command &s) {
include/llvm/Object/MachO.h
  530   MachO::sub_umbrella_command
lib/Object/MachOObjectFile.cpp
   68 static T getStruct(const MachOObjectFile &O, const char *P) {
   70   if (P < O.getData().begin() || P + sizeof(T) > O.getData().end())
   73   T Cmd;
   74   memcpy(&Cmd, P, sizeof(T));
 1518       if (Load.C.cmdsize < sizeof(MachO::sub_umbrella_command)) {
 1523       MachO::sub_umbrella_command S =
 1524         getStruct<MachO::sub_umbrella_command>(*this, Load.Ptr);
 1526                                  sizeof(MachO::sub_umbrella_command),
 4372 MachO::sub_umbrella_command
 4374   return getStruct<MachO::sub_umbrella_command>(*this, L.Ptr);
lib/ObjectYAML/MachOYAML.cpp
  519     IO &IO, MachO::sub_umbrella_command &LoadCommand) {
tools/llvm-objdump/MachODump.cpp
 9284 static void PrintSubUmbrellaCommand(MachO::sub_umbrella_command sub,
 9288   if (sub.cmdsize < sizeof(struct MachO::sub_umbrella_command))
10153       MachO::sub_umbrella_command Sf = Obj->getSubUmbrellaCommand(Command);
tools/obj2yaml/macho2yaml.cpp
  124   return LoadCmd.Ptr + sizeof(StructType);