Searched refs:load_cmd (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 1602 llvm::MachO::segment_command_64 load_cmd; in ProcessSegmentCommand() local 1603 memcpy(&load_cmd, &load_cmd_, sizeof(load_cmd_)); in ProcessSegmentCommand() 1605 if (!m_data.GetU8(&offset, (uint8_t *)load_cmd.segname, 16)) in ProcessSegmentCommand() 1614 load_cmd.segname, strnlen(load_cmd.segname, sizeof(load_cmd.segname))); in ProcessSegmentCommand() 1629 load_cmd.vmaddr = m_data.GetAddress(&offset); in ProcessSegmentCommand() 1630 load_cmd.vmsize = m_data.GetAddress(&offset); in ProcessSegmentCommand() 1631 load_cmd.fileoff = m_data.GetAddress(&offset); in ProcessSegmentCommand() 1632 load_cmd.filesize = m_data.GetAddress(&offset); in ProcessSegmentCommand() 1633 if (!m_data.GetU32(&offset, &load_cmd.maxprot, 4)) in ProcessSegmentCommand() 1636 SanitizeSegmentCommand(load_cmd, cmd_idx); in ProcessSegmentCommand() [all …]
|
| H A D | ObjectFileMachO.h | 214 void ProcessDysymtabCommand(const llvm::MachO::load_command &load_cmd, 216 void ProcessSegmentCommand(const llvm::MachO::load_command &load_cmd,
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | collect2.c | 3065 load_all_t *load_cmd; local 3119 load_cmd = load_end++; 3137 load_cmd->load = load_hdr; 3139 load_cmd->section = obj + load_hdr->hdr.ldci_section_off; 3157 for (load_cmd = load_array; load_cmd < load_end; load_cmd++) 3159 load_union_t *load_hdr = load_cmd->load; 3187 if (load_cmd->section == (char *) 0) 3193 symbol_info_t *sym = ((symbol_info_t *) load_cmd->section) + i; 3341 load_all_t *load_cmd; local 3348 load_cmd = &load_array[load_index]; [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOSXDYLD.cpp | 858 llvm::MachO::load_command load_cmd; in ParseLoadCommands() local 860 load_cmd.cmd = data.GetU32(&offset); in ParseLoadCommands() 861 load_cmd.cmdsize = data.GetU32(&offset); in ParseLoadCommands() 862 switch (load_cmd.cmd) { in ParseLoadCommands() 905 offset = load_cmd_offset + load_cmd.cmdsize; in ParseLoadCommands()
|