Home
last modified time | relevance | path

Searched refs:resolved_module_spec (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
HDPlatformFreeBSD.cpp165 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
171 if (!resolved_module_spec.GetFileSpec().Exists()) in ResolveExecutable()
174 resolved_module_spec.GetFileSpec().SetFile(exe_path, true); in ResolveExecutable()
177 if (!resolved_module_spec.GetFileSpec().Exists()) in ResolveExecutable()
178 resolved_module_spec.GetFileSpec().ResolveExecutableLocation (); in ResolveExecutable()
180 if (resolved_module_spec.GetFileSpec().Exists()) in ResolveExecutable()
184 …or.SetErrorStringWithFormat("unable to find executable for '%s'", resolved_module_spec.GetFileSpec… in ResolveExecutable()
191 …error = GetCachedExecutable (resolved_module_spec, exe_module_sp, module_search_paths_ptr, *m_remo… in ResolveExecutable()
198 Host::ResolveExecutableInBundle (resolved_module_spec.GetFileSpec()); in ResolveExecutable()
200 if (resolved_module_spec.GetFileSpec().Exists()) in ResolveExecutable()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
HDPlatformRemoteGDBServer.cpp139 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
144 if (resolved_module_spec.GetFileSpec().Exists() || in ResolveExecutable()
147 … if (resolved_module_spec.GetArchitecture().IsValid() || resolved_module_spec.GetUUID().IsValid()) in ResolveExecutable()
149 error = ModuleList::GetSharedModule (resolved_module_spec, in ResolveExecutable()
163 …for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, resolved_module_spec.GetArchitecture(… in ResolveExecutable()
165 error = ModuleList::GetSharedModule (resolved_module_spec, in ResolveExecutable()
181 arch_names.PutCString (resolved_module_spec.GetArchitecture().GetArchitectureName()); in ResolveExecutable()
186 if (resolved_module_spec.GetFileSpec().Readable()) in ResolveExecutable()
189resolved_module_spec.GetFileSpec().GetPath().c_str(), in ResolveExecutable()
195 …error.SetErrorStringWithFormat("'%s' is not readable", resolved_module_spec.GetFileSpec().GetPath(… in ResolveExecutable()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDPlatform.cpp1808 ModuleSpec resolved_module_spec; in GetRemoteSharedModule() local
1813 …->GetModuleSpec (module_spec.GetFileSpec (), module_spec.GetArchitecture (), resolved_module_spec)) in GetRemoteSharedModule()
1820 …(!GetModuleSpec (module_spec.GetFileSpec (), module_spec.GetArchitecture (), resolved_module_spec)) in GetRemoteSharedModule()
1825 const auto error = module_resolver (resolved_module_spec); in GetRemoteSharedModule()
1828 if (GetCachedSharedModule (resolved_module_spec, module_sp, did_create_ptr)) in GetRemoteSharedModule()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDModuleList.cpp1018 auto resolved_module_spec(module_spec); in GetSharedModule() local
1019 resolved_module_spec.GetFileSpec() = search_path_spec; in GetSharedModule()
1020 module_sp.reset (new Module (resolved_module_spec)); in GetSharedModule()