Home
last modified time | relevance | path

Searched refs:exe_module_sp (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp304 ModuleSP exe_module_sp; in CreateTargetInternal() local
309 error = platform_sp->ResolveExecutable(module_spec, exe_module_sp, in CreateTargetInternal()
315 if (error.Success() && exe_module_sp) { in CreateTargetInternal()
316 if (exe_module_sp->GetObjectFile() == nullptr) { in CreateTargetInternal()
329 target_sp->SetExecutableModule(exe_module_sp, load_dependent_files); in CreateTargetInternal()
331 exe_module_sp->GetFileSpec().GetPath(resolved_bundle_exe_path, in CreateTargetInternal()
334 exe_module_sp->PreloadSymbols(); in CreateTargetInternal()
H A DRemoteAwarePlatform.cpp33 const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, in ResolveExecutable() argument
50 return GetCachedExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable()
54 return Platform::ResolveExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable()
H A DPlatform.cpp733 lldb::ModuleSP &exe_module_sp, in ResolveExecutable() argument
751 ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
754 if (exe_module_sp && exe_module_sp->GetObjectFile()) in ResolveExecutable()
756 exe_module_sp.reset(); in ResolveExecutable()
768 ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
771 if (exe_module_sp && exe_module_sp->GetObjectFile()) in ResolveExecutable()
779 if (exe_module_sp && error.Success()) in ResolveExecutable()
H A DProcess.cpp3162 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3166 exe_module_sp ? exe_module_sp->GetFileSpec() : FileSpec(), in CompleteAttach()
3177 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3181 exe_module_sp ? exe_module_sp->GetFileSpec() : FileSpec(), in CompleteAttach()
3209 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3214 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str() in CompleteAttach()
H A DTarget.cpp2408 ModuleSP exe_module_sp(target->GetExecutableModule()); in ImageSearchPathsChanged() local
2409 if (exe_module_sp) in ImageSearchPathsChanged()
2410 target->SetExecutableModule(exe_module_sp, eLoadDependentsYes); in ImageSearchPathsChanged()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp147 ModuleSP exe_module_sp = target->GetExecutableModule(); in DoExecute() local
154 if (exe_module_sp == nullptr && !target->GetProcessLaunchInfo().GetExecutableFile()) { in DoExecute()
213 if (exe_module_sp) in DoExecute()
215 exe_module_sp->GetPlatformFileSpec(), false); in DoExecute()
219 if (exe_module_sp) in DoExecute()
221 exe_module_sp->GetPlatformFileSpec(), true); in DoExecute()
249 if (!exe_module_sp) in DoExecute()
250 exe_module_sp = target->GetExecutableModule(); in DoExecute()
251 if (!exe_module_sp) { in DoExecute()
256 exe_module_sp->GetArchitecture().GetArchitectureName(); in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp176 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx, in DebugMapModule() argument
181 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {} in DebugMapModule()
192 ModuleSP exe_module_sp(m_exe_module_wp.lock()); in GetSymbolFile() local
193 if (exe_module_sp) { in GetSymbolFile()
209 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile(); in GetSymbolFile()
210 SymbolFile *exe_symfile = exe_module_sp->GetSymbolFile(); in GetSymbolFile()
213 oso_symfile->SetDebugMapModule(exe_module_sp); in GetSymbolFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp258 lldb::ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in DoLoadCore() local
259 if (!exe_module_sp) { in DoLoadCore()
268 exe_module_sp = in DoLoadCore()
270 if (exe_module_sp) in DoLoadCore()
271 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsNo); in DoLoadCore()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h25 lldb::ModuleSP &exe_module_sp,
H A DPlatform.h127 lldb::ModuleSP &exe_module_sp,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp385 ModuleSP exe_module_sp = target->GetExecutableModule(); in Attach() local
388 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str() in Attach()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp3574 ModuleSP exe_module_sp = target->GetExecutableModule(); in GetTarget() local
3576 if (exe_module_sp == nullptr) { in GetTarget()