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

References

include/llvm/BinaryFormat/MachO.h
 1202   sys::swapByteOrder(r.path);
lib/Object/MachOObjectFile.cpp
  883   if (R.path < sizeof(MachO::rpath_command))
  887   if (R.path >= R.cmdsize)
  895   for (i = R.path; i < R.cmdsize; i++)
lib/ObjectYAML/MachOYAML.cpp
  439   IO.mapRequired("path", LoadCommand.path);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  473       f->rpaths.push_back(lc + read32(&rpc->path, isBig));
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  984       rpc->path                        = sizeof(rpath_command); // offset
tools/llvm-objdump/MachODump.cpp
 9063   if (rpath.path >= rpath.cmdsize)
 9064     outs() << "         path ?(bad offset " << rpath.path << ")\n";
 9066     const char *P = (const char *)(Ptr) + rpath.path;
 9067     outs() << "         path " << P << " (offset " << rpath.path << ")\n";