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

References

include/llvm/BinaryFormat/MachO.h
 1145 inline void swapStruct(sub_library_command &s) {
include/llvm/Object/MachO.h
  532   MachO::sub_library_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));
 1531       if (Load.C.cmdsize < sizeof(MachO::sub_library_command)) {
 1536       MachO::sub_library_command S =
 1537         getStruct<MachO::sub_library_command>(*this, Load.Ptr);
 1539                                  sizeof(MachO::sub_library_command),
 4377 MachO::sub_library_command
 4379   return getStruct<MachO::sub_library_command>(*this, L.Ptr);
lib/ObjectYAML/MachOYAML.cpp
  514     IO &IO, MachO::sub_library_command &LoadCommand) {
tools/llvm-objdump/MachODump.cpp
 9300 static void PrintSubLibraryCommand(MachO::sub_library_command sub,
 9304   if (sub.cmdsize < sizeof(struct MachO::sub_library_command))
10156       MachO::sub_library_command Sl = Obj->getSubLibraryCommand(Command);
tools/obj2yaml/macho2yaml.cpp
  124   return LoadCmd.Ptr + sizeof(StructType);