Home
last modified time | relevance | path

Searched refs:load_cmd (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1598 load_cmd.segname, strnlen(load_cmd.segname, sizeof(load_cmd.segname))); in ProcessSegmentCommand()
1628 m_mach_segments.push_back(load_cmd); in ProcessSegmentCommand()
1870 m_dysymtab.cmd = load_cmd.cmd; in ProcessDysymtabCommand()
1889 llvm::MachO::load_command load_cmd; in CreateSections() local
1895 if (load_cmd.cmd == LC_SEGMENT || load_cmd.cmd == LC_SEGMENT_64) in CreateSections()
4818 llvm::MachO::uuid_command load_cmd;
4826 if (load_cmd.cmd == LC_UUID) {
4969 llvm::MachO::load_command load_cmd;
4980 switch (load_cmd.cmd) {
5113 switch (load_cmd.cmd) {
[all …]
H A DObjectFileMachO.h211 void ProcessDysymtabCommand(const llvm::MachO::load_command &load_cmd,
213 void ProcessSegmentCommand(const llvm::MachO::load_command &load_cmd,
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp848 llvm::MachO::load_command load_cmd; in ParseLoadCommands() local
850 load_cmd.cmd = data.GetU32(&offset); in ParseLoadCommands()
851 load_cmd.cmdsize = data.GetU32(&offset); in ParseLoadCommands()
852 switch (load_cmd.cmd) { in ParseLoadCommands()
895 offset = load_cmd_offset + load_cmd.cmdsize; in ParseLoadCommands()