Home
last modified time | relevance | path

Searched refs:rpath_command (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMachO.def53 HANDLE_LOAD_COMMAND(LC_RPATH, 0x8000001Cu, rpath_command)
100 LOAD_COMMAND_STRUCT(rpath_command)
H A DMachO.h778 struct rpath_command { struct
1188 inline void swapStruct(rpath_command &r) { in swapStruct()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp443 size += pointerAlign(sizeof(rpath_command) + path.size() + 1); in loadCommandsSize()
974 rpath_command *rpc = reinterpret_cast<rpath_command *>(lc); in writeLoadCommands()
975 uint32_t size = pointerAlign(sizeof(rpath_command) + path.size() + 1); in writeLoadCommands()
978 rpc->path = sizeof(rpath_command); // offset in writeLoadCommands()
981 memcpy(lc+sizeof(rpath_command), path.begin(), path.size()); in writeLoadCommands()
982 lc[sizeof(rpath_command)+path.size()] = '\0'; in writeLoadCommands()
H A DMachONormalizedFileBinaryReader.cpp473 const rpath_command *rpc = reinterpret_cast<const rpath_command *>(lc); in readBinary()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp224 void mapLoadCommandData<MachO::rpath_command>( in mapLoadCommandData()
429 void MappingTraits<MachO::rpath_command>::mapping( in mapping()
430 IO &IO, MachO::rpath_command &LoadCommand) { in mapping()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp851 if (Load.C.cmdsize < sizeof(MachO::rpath_command)) in checkRpathCommand()
854 MachO::rpath_command R = getStruct<MachO::rpath_command>(Obj, Load.Ptr); in checkRpathCommand()
855 if (R.path < sizeof(MachO::rpath_command)) in checkRpathCommand()
4324 MachO::rpath_command
4326 return getStruct<MachO::rpath_command>(*this, L.Ptr); in getRpathCommand()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DMachO.h525 MachO::rpath_command
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp8638 static void PrintRpathLoadCommand(MachO::rpath_command rpath, const char *Ptr) { in PrintRpathLoadCommand()
8641 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand()
9697 MachO::rpath_command Rpath = Obj->getRpathCommand(Command); in PrintLoadCommands()