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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp69 lldb::ModuleSP &exe_module_sp,
111 GetCachedExecutable(resolved_module_spec, exe_module_sp,
132 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
154 exe_module_sp, module_search_paths_ptr, nullptr, nullptr);
158 // TODO find out why exe_module_sp might be NULL
159 if (error.Fail() || !exe_module_sp || !exe_module_sp->GetObjectFile()) {
160 exe_module_sp.reset();
174 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
178 if (exe_module_sp
68 ResolveExecutable(const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
525 ModuleSP exe_module_sp = target->GetExecutableModule(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp276 ModuleSP exe_module_sp(target_sp->GetExecutableModule());
277 if (exe_module_sp.get())
278 return FileSystem::Instance().Exists(exe_module_sp->GetFileSpec());
308 ModuleSP exe_module_sp; local
314 exe_module_spec, exe_module_sp,
320 const ArchSpec &module_arch = exe_module_sp->GetArchitecture();
326 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsYes);
500 ModuleSP exe_module_sp; local
506 exe_module_spec, exe_module_sp,
510 target->SetExecutableModule(exe_module_sp, eLoadDependentsYe
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
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,
H A DPlatform.cpp850 lldb::ModuleSP &exe_module_sp,
855 error = ModuleList::GetSharedModule(module_spec, exe_module_sp,
866 error = ModuleList::GetSharedModule(arch_module_spec, exe_module_sp,
870 if (error.Success() && exe_module_sp)
849 ResolveExecutable(const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
H A DProcess.cpp2926 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
2931 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
2943 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
2948 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
2982 ModuleSP exe_module_sp = GetTarget().GetExecutableModule();
2987 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
H A DTarget.cpp2116 ModuleSP exe_module_sp(target->GetExecutableModule());
2117 if (exe_module_sp)
2118 target->SetExecutableModule(exe_module_sp, eLoadDependentsYes);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp95 const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp,
111 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
115 if (exe_module_sp && exe_module_sp->GetObjectFile())
117 exe_module_sp.reset();
126 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
131 if (exe_module_sp && exe_module_sp->GetObjectFile())
143 if (error.Fail() || !exe_module_sp) {
94 ResolveExecutable( const ModuleSpec &module_spec, lldb::ModuleSP &exe_module_sp, const FileSpecList *module_search_paths_ptr) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp169 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx, argument
174 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {}
185 ModuleSP exe_module_sp(m_exe_module_wp.lock());
186 if (exe_module_sp) {
202 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile();
203 SymbolFile *exe_symfile = exe_module_sp->GetSymbolFile();
206 oso_symfile->SetDebugMapModule(exe_module_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp235 lldb::ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); local
236 if (!exe_module_sp) {
244 exe_module_sp = GetTarget().GetOrCreateModule(exe_module_spec,
246 if (exe_module_sp)
247 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsNo);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp151 ModuleSP exe_module_sp = target->GetExecutableModule(); variable
153 if (exe_module_sp == nullptr) {
203 exe_module_sp->GetPlatformFileSpec(), false);
206 exe_module_sp->GetPlatformFileSpec(), true);
234 exe_module_sp->GetArchitecture().GetArchitectureName();
237 exe_module_sp->GetFileSpec().GetPath().c_str(), archname);

Completed in 173 milliseconds