Home
last modified time | relevance | path

Searched refs:module_file_spec (Results 1 – 24 of 24) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp267 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local
269 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
270 module_file_spec); in LocateExecutableSymbolFile()
272 ConstString file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
351 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
H A DSymbolContext.cpp962 FileSpec module_file_spec(spec_string); in AddSpecification() local
963 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1035 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1036 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp145 const FileSpec &module_file_spec( in SetSectionUnloaded() local
147 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
180 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded() local
181 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
H A DModuleCache.cpp77 FileSpec GetSymbolFileSpec(const FileSpec &module_file_spec) { in GetSymbolFileSpec() argument
78 return FileSpec(module_file_spec.GetPath() + kSymFileExtension); in GetSymbolFileSpec()
H A DRemoteAwarePlatform.cpp22 bool RemoteAwarePlatform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
26 return m_remote_platform_sp->GetModuleSpec(module_file_spec, arch, in GetModuleSpec()
H A DPlatform.cpp262 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
265 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec()
270 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
H A DTarget.cpp1657 const FileSpec &module_file_spec) { in ModuleIsExcludedForUnconstrainedSearches() argument
1660 ModuleSpec module_spec(module_file_spec); in ModuleIsExcludedForUnconstrainedSearches()
H A DProcess.cpp5796 bool Process::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp565 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
566 if (module_file_spec) { in DoExecute()
567 ModuleSpec module_spec(module_file_spec); in DoExecute()
887 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
888 if (module_file_spec) { in FindMatchingFunctions()
889 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
910 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
911 if (module_file_spec) { in FindMatchingFunctionSymbols()
912 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1164 if (module_file_spec) { in DoExecute()
[all …]
H A DCommandObjectTarget.cpp1728 FileSpec module_file_spec(module_name); in FindModulesByName() local
1729 ModuleSpec module_spec(module_file_spec); in FindModulesByName()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp307 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in AppleIsModuleObjCLibrary() local
310 if (module_file_spec) { in AppleIsModuleObjCLibrary()
311 if (module_file_spec.GetFilename() == ObjCName) in AppleIsModuleObjCLibrary()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp619 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local
624 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths()
763 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local
882 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
887 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h22 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DPlatform.h309 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
H A DProcess.h2411 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp742 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
743 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
747 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
753 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp701 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
702 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
706 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
712 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp167 bool PlatformRemoteGDBServer::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
172 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec()
174 if (!m_gdb_client.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
H A DPlatformRemoteGDBServer.h49 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h194 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DGDBRemoteCommunicationClient.h479 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DGDBRemoteCommunicationClient.cpp3638 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3643 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3671 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3745 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3747 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
H A DProcessGDBRemote.cpp4282 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4287 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4295 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4297 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4306 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1619 auto module_file_spec = in AddInitCompletionHook() local
1621 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()