Searched refs:exe_module_sp (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp33 const ModuleSpec &module_spec, ModuleSP &exe_module_sp,
74 return GetCachedExecutable(resolved_module_spec, exe_module_sp,
96 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
118 exe_module_sp, module_search_paths_ptr, nullptr, nullptr);
122 // TODO find out why exe_module_sp might be NULL
123 if (error.Fail() || !exe_module_sp || !exe_module_sp->GetObjectFile()) {
124 exe_module_sp.reset();
138 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
142 if (exe_module_sp
32 ResolveExecutable( const ModuleSpec &module_spec, ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
[all...]
H A DTargetList.cpp373 ModuleSP exe_module_sp; local
378 error = platform_sp->ResolveExecutable(module_spec, exe_module_sp,
384 if (error.Success() && exe_module_sp) {
385 if (exe_module_sp->GetObjectFile() == nullptr) {
397 target_sp->SetExecutableModule(exe_module_sp, load_dependent_files);
399 exe_module_sp->GetFileSpec().GetPath(resolved_bundle_exe_path,
402 exe_module_sp->PreloadSymbols();
H A DPlatform.cpp856 lldb::ModuleSP &exe_module_sp,
861 error = ModuleList::GetSharedModule(module_spec, exe_module_sp,
872 error = ModuleList::GetSharedModule(arch_module_spec, exe_module_sp,
876 if (error.Success() && exe_module_sp)
855 ResolveExecutable(const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
H A DProcess.cpp3032 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
3037 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
3049 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
3054 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
3088 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
3093 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
H A DTarget.cpp2171 ModuleSP exe_module_sp(target->GetExecutableModule());
2172 if (exe_module_sp)
2173 target->SetExecutableModule(exe_module_sp, eLoadDependentsYes);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp277 ModuleSP exe_module_sp(target_sp->GetExecutableModule());
278 if (exe_module_sp.get())
279 return FileSystem::Instance().Exists(exe_module_sp->GetFileSpec());
309 ModuleSP exe_module_sp; local
315 exe_module_spec, exe_module_sp,
321 const ArchSpec &module_arch = exe_module_sp->GetArchitecture();
327 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsYes);
502 ModuleSP exe_module_sp; local
508 exe_module_spec, exe_module_sp,
512 target->SetExecutableModule(exe_module_sp, eLoadDependentsYe
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp97 const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp,
113 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
117 if (exe_module_sp && exe_module_sp->GetObjectFile())
119 exe_module_sp.reset();
128 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
133 if (exe_module_sp && exe_module_sp->GetObjectFile())
145 if (error.Fail() || !exe_module_sp) {
96 ResolveExecutable( const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp167 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx, argument
172 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {}
183 ModuleSP exe_module_sp(m_exe_module_wp.lock());
184 if (exe_module_sp) {
200 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile();
201 SymbolFile *exe_symfile = exe_module_sp->GetSymbolFile();
204 oso_symfile->SetDebugMapModule(exe_module_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp237 lldb::ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); local
238 if (!exe_module_sp) {
246 exe_module_sp = GetTarget().GetOrCreateModule(exe_module_spec,
248 if (exe_module_sp)
249 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsNo);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp150 ModuleSP exe_module_sp = target->GetExecutableModule(); variable
152 if (exe_module_sp == nullptr) {
202 exe_module_sp->GetPlatformFileSpec(), false);
205 exe_module_sp->GetPlatformFileSpec(), true);
233 exe_module_sp->GetArchitecture().GetArchitectureName();
236 exe_module_sp->GetFileSpec().GetPath().c_str(), archname);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp382 ModuleSP exe_module_sp = target->GetExecutableModule(); local
385 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()

Completed in 418 milliseconds