| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 49 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE() local 50 if (exe_module) { in LLDB_PLUGIN_DEFINE() 51 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | TargetList.cpp | 384 Module *exe_module = item->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local 385 if (!exe_module || in FindTargetWithExecutableAndArchitecture() 386 !FileSpec::Match(exe_file_spec, exe_module->GetFileSpec())) in FindTargetWithExecutableAndArchitecture() 390 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
|
| H A D | Target.cpp | 166 Module *exe_module = GetExecutableModulePointer(); in Dump() local 167 if (exe_module) in Dump() 168 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump() 2659 Module *exe_module = GetExecutableModulePointer(); in GetEntryPointAddress() local 2662 const bool has_primary_executable = exe_module && exe_module->GetObjectFile(); in GetEntryPointAddress() 2664 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress(); in GetEntryPointAddress() 2690 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\"", in GetEntryPointAddress()
|
| H A D | Process.cpp | 2487 Module *exe_module = GetTarget().GetExecutableModulePointer(); in LaunchPrivate() local 2497 if (!exe_module) { in LaunchPrivate() 2504 exe_spec_to_use = exe_module->GetFileSpec(); in LaunchPrivate() 2506 if (exe_module && FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in LaunchPrivate() 2523 error = WillLaunch(exe_module); in LaunchPrivate() 2535 error = DoLaunch(exe_module, launch_info); in LaunchPrivate()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.cpp | 119 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 120 if (exe_module) { in CanDebug() 130 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 360 Status ProcessKDP::DoLaunch(Module *exe_module, in DoLaunch() argument
|
| H A D | ProcessKDP.h | 62 DoLaunch(lldb_private::Module *exe_module,
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | ValueObjectRegister.cpp | 203 if (auto *exe_module = target->GetExecutableModulePointer()) { in GetCompilerTypeImpl() local 205 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
|
| H A D | FormatEntity.cpp | 1221 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local 1222 if (exe_module) { in Format() 1223 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOS.cpp | 41 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() local 42 if (exe_module) { in CreateInstance() 43 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance()
|
| H A D | DynamicLoaderMacOSXDYLD.cpp | 61 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE() local 62 if (exe_module) { in LLDB_PLUGIN_DEFINE() 63 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBProcess.cpp | 142 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local 143 if (exe_module) in RemoteLaunch() 144 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch() 923 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local 925 if (exe_module) in GetDescription() 926 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
|
| H A D | SBTarget.cpp | 272 if (Module *exe_module = target_sp->GetExecutableModulePointer()) in LaunchSimple() local 273 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), in LaunchSimple() 353 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 354 if (exe_module) in Launch() 355 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 410 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 411 if (exe_module) in Launch() 412 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 556 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local 557 if (exe_module) in GetExecutable() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.h | 48 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| H A D | ScriptedProcess.cpp | 148 Status ScriptedProcess::DoLaunch(Module *exe_module, in DoLaunch() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindows.h | 51 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| H A D | ProcessWindows.cpp | 186 Status ProcessWindows::DoLaunch(Module *exe_module, in DoLaunch() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/ |
| H A D | SystemRuntimeMacOSX.cpp | 47 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE() local 48 if (exe_module) { in LLDB_PLUGIN_DEFINE() 49 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1173 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local 1174 if (exe_module) { in DoExecute() 1175 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute() 1180 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
|
| H A D | CommandObjectTarget.cpp | 76 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local 79 if (exe_module) in DumpTargetInfo() 80 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in DumpTargetInfo()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | DynamicLoaderDarwinKernel.cpp | 214 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in SearchForKernelAtSameLoadAddr() local 219 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in SearchForKernelAtSameLoadAddr() 226 exe_module->GetUUID()) in SearchForKernelAtSameLoadAddr()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1425 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local 1427 if (addr_module == exe_module) in LinkOSOAddress() 1444 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 83 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| H A D | ProcessGDBRemote.cpp | 221 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 222 if (exe_module) { in CanDebug() 223 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 239 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug() 609 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Process.h | 1037 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | crashlog.py | 1017 exe_module = target.GetModuleAtIndex(0)
|