/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/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 | 169 Module *exe_module = GetExecutableModulePointer(); in Dump() local 170 if (exe_module) in Dump() 171 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump() 2763 Module *exe_module = GetExecutableModulePointer(); in GetEntryPointAddress() local 2766 const bool has_primary_executable = exe_module && exe_module->GetObjectFile(); in GetEntryPointAddress() 2768 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress(); in GetEntryPointAddress() 2793 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\""); in GetEntryPointAddress()
|
H A D | Process.cpp | 2675 Module *exe_module = GetTarget().GetExecutableModulePointer(); in LaunchPrivate() local 2685 if (!exe_module) { in LaunchPrivate() 2692 exe_spec_to_use = exe_module->GetFileSpec(); in LaunchPrivate() 2694 if (exe_module && FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in LaunchPrivate() 2711 error = WillLaunch(exe_module); in LaunchPrivate() 2723 error = DoLaunch(exe_module, launch_info); in LaunchPrivate()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectRegister.cpp | 197 if (auto *exe_module = target->GetExecutableModulePointer()) { in GetCompilerTypeImpl() local 199 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
|
H A D | FormatEntity.cpp | 1269 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local 1270 if (exe_module) { in Format() 1271 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
|
/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() 361 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 362 if (exe_module) in Launch() 363 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 418 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local 419 if (exe_module) in Launch() 420 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch() 565 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local 566 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() 997 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local 999 if (exe_module) in GetDescription() 1000 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
|
/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 | 165 Status ScriptedProcess::DoLaunch(Module *exe_module, 151 DoLaunch(Module * exe_module,ProcessLaunchInfo & launch_info) DoLaunch() argument
|
/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/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 | 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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARFDebugMap.cpp | 1473 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local 1475 if (addr_module == exe_module) in LinkOSOAddress() 1492 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 | 86 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
|
H A D | ProcessGDBRemote.cpp | 228 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local 229 if (exe_module) { in CanDebug() 230 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug() 246 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug() 615 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Process.h | 1097 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument
|