Searched refs:rpath_command (Results 1 – 8 of 8) sorted by relevance
53 HANDLE_LOAD_COMMAND(LC_RPATH, 0x8000001Cu, rpath_command)100 LOAD_COMMAND_STRUCT(rpath_command)
778 struct rpath_command { struct1188 inline void swapStruct(rpath_command &r) { in swapStruct()
443 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()
473 const rpath_command *rpc = reinterpret_cast<const rpath_command *>(lc); in readBinary()
224 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()
851 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_command4326 return getStruct<MachO::rpath_command>(*this, L.Ptr); in getRpathCommand()
525 MachO::rpath_command
8638 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()