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

References

include/llvm/BinaryFormat/MachO.h
 1157 inline void swapStruct(routines_command &r) {
include/llvm/Object/MachO.h
  536   MachO::routines_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));
 1556       if (Load.C.cmdsize != sizeof(MachO::routines_command)) {
 4387 MachO::routines_command
 4389   return getStruct<MachO::routines_command>(*this, L.Ptr);
lib/ObjectYAML/MachOYAML.cpp
  414     IO &IO, MachO::routines_command &LoadCommand) {
tools/llvm-objdump/MachODump.cpp
 9332 static void PrintRoutinesCommand(MachO::routines_command r) {
 9335   if (r.cmdsize != sizeof(struct MachO::routines_command))
10162       MachO::routines_command Rc = Obj->getRoutinesCommand(Command);
tools/obj2yaml/macho2yaml.cpp
  124   return LoadCmd.Ptr + sizeof(StructType);