| /freebsd/contrib/llvm-project/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()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Protocol/MCP/ |
| H A D | Resource.cpp | 87 if (Module *exe_module = target.GetExecutableModulePointer()) in GetTargetResource() local 88 target_name = exe_module->GetFileSpec().GetFilename().GetString(); in GetTargetResource() 204 if (Module *exe_module = target_sp->GetExecutableModulePointer()) in ReadTargetResource() local 205 target_resource.path = exe_module->GetFileSpec().GetPath(); in ReadTargetResource()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | TargetList.cpp | 387 Module *exe_module = item->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local 388 if (!exe_module || in FindTargetWithExecutableAndArchitecture() 389 !FileSpec::Match(exe_file_spec, exe_module->GetFileSpec())) in FindTargetWithExecutableAndArchitecture() 393 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
|
| H A D | Target.cpp | 247 Module *exe_module = GetExecutableModulePointer(); in Dump() local 248 if (exe_module) in Dump() 249 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump() 2940 Module *exe_module = GetExecutableModulePointer(); in GetEntryPointAddress() local 2943 const bool has_primary_executable = exe_module && exe_module->GetObjectFile(); in GetEntryPointAddress() 2945 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress(); in GetEntryPointAddress() 2970 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\""); in GetEntryPointAddress()
|
| H A D | Process.cpp | 2644 Module *exe_module = GetTarget().GetExecutableModulePointer(); in LaunchPrivate() local 2654 if (!exe_module) { in LaunchPrivate() 2661 exe_spec_to_use = exe_module->GetFileSpec(); in LaunchPrivate() 2663 if (exe_module && FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in LaunchPrivate() 2680 error = WillLaunch(exe_module); in LaunchPrivate() 2692 error = DoLaunch(exe_module, launch_info); in LaunchPrivate()
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectRegister.cpp | 199 if (auto *exe_module = target->GetExecutableModulePointer()) { in GetCompilerTypeImpl() local 201 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBTarget.cpp | 280 if (Module *exe_module = target_sp->GetExecutableModulePointer()) in LaunchSimple() local 281 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), in LaunchSimple() 358 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 359 if (exe_module) in Launch() 360 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 413 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 414 if (exe_module) in Launch() 415 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 558 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local 559 if (exe_module) in GetExecutable() [all …]
|
| H A D | SBProcess.cpp | 146 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local 147 if (exe_module) in RemoteLaunch() 148 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch() 1012 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local 1014 if (exe_module) in GetDescription() 1015 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
| H A D | DynamicLoaderFreeBSDKernel.cpp | 137 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in FindKernelAtLoadAddress() local 139 if (!is_kernel(exe_module)) in FindKernelAtLoadAddress() 142 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in FindKernelAtLoadAddress()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.h | 49 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| H A D | ScriptedProcess.cpp | 167 Status ScriptedProcess::DoLaunch(Module *exe_module, in DoLaunch() argument
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1088 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local 1089 if (exe_module) { in DoExecute() 1090 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute() 1095 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
|
| H A D | CommandObjectTarget.cpp | 81 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local 84 if (exe_module) in DumpTargetInfo() 85 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in DumpTargetInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 1405 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local 1406 if (exe_module) { in Format() 1407 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format() 1611 if (Module *exe_module = target->GetExecutableModulePointer()) { in Format() local 1612 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1480 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local 1482 if (addr_module == exe_module) in LinkOSOAddress() 1499 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
|
| /freebsd/contrib/llvm-project/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 | 238 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 239 if (exe_module) { in CanDebug() 240 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 256 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug() 625 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Process.h | 1087 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument
|