| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | TargetList.cpp | 386 Module *exe_module = item->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local 387 if (!exe_module || in FindTargetWithExecutableAndArchitecture() 388 !FileSpec::Match(exe_file_spec, exe_module->GetFileSpec())) in FindTargetWithExecutableAndArchitecture() 392 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
|
| H A D | Target.cpp | 168 Module *exe_module = GetExecutableModulePointer(); in Dump() local 169 if (exe_module) in Dump() 170 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump() 2773 Module *exe_module = GetExecutableModulePointer(); in GetEntryPointAddress() local 2776 const bool has_primary_executable = exe_module && exe_module->GetObjectFile(); in GetEntryPointAddress() 2778 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress(); in GetEntryPointAddress() 2804 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\"", in GetEntryPointAddress()
|
| H A D | Process.cpp | 2512 Module *exe_module = GetTarget().GetExecutableModulePointer(); in LaunchPrivate() local 2522 if (!exe_module) { in LaunchPrivate() 2529 exe_spec_to_use = exe_module->GetFileSpec(); in LaunchPrivate() 2531 if (exe_module && FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in LaunchPrivate() 2548 error = WillLaunch(exe_module); in LaunchPrivate() 2560 error = DoLaunch(exe_module, launch_info); in LaunchPrivate()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectRegister.cpp | 200 if (auto *exe_module = target->GetExecutableModulePointer()) { in GetCompilerTypeImpl() local 202 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
|
| H A D | FormatEntity.cpp | 1227 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local 1228 if (exe_module) { in Format() 1229 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 143 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local 144 if (exe_module) in RemoteLaunch() 145 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch() 940 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local 942 if (exe_module) in GetDescription() 943 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
|
| H A D | SBTarget.cpp | 273 if (Module *exe_module = target_sp->GetExecutableModulePointer()) in LaunchSimple() local 274 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), in LaunchSimple() 354 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 355 if (exe_module) in Launch() 356 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 411 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 412 if (exe_module) in Launch() 413 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 …]
|
| /freebsd-14.2/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 | 165 Status ScriptedProcess::DoLaunch(Module *exe_module, in DoLaunch() argument
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1161 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local 1162 if (exe_module) { in DoExecute() 1163 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute() 1168 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
|
| H A D | CommandObjectTarget.cpp | 80 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local 83 if (exe_module) in DumpTargetInfo() 84 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in DumpTargetInfo()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1463 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local 1465 if (addr_module == exe_module) in LinkOSOAddress() 1482 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 86 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
| H A D | ProcessGDBRemote.cpp | 227 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 228 if (exe_module) { in CanDebug() 229 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 245 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug() 615 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Process.h | 1093 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument
|