Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFile.cpp274 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local
276 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
277 module_file_spec); in LocateExecutableSymbolFile()
279 ConstString file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
358 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
H A DSymbolContext.cpp958 FileSpec module_file_spec(spec_string); in AddSpecification() local
959 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1030 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1031 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
/llvm-project-15.0.7/lldb/source/Target/
H A DSectionLoadList.cpp146 const FileSpec &module_file_spec( in SetSectionUnloaded() local
148 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
181 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded() local
182 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
H A DModuleCache.cpp78 FileSpec GetSymbolFileSpec(const FileSpec &module_file_spec) { in GetSymbolFileSpec() argument
79 return FileSpec(module_file_spec.GetPath() + kSymFileExtension); in GetSymbolFileSpec()
H A DRemoteAwarePlatform.cpp21 bool RemoteAwarePlatform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
25 return m_remote_platform_sp->GetModuleSpec(module_file_spec, arch, in GetModuleSpec()
H A DPlatform.cpp241 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
244 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec()
249 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
H A DTarget.cpp1672 const FileSpec &module_file_spec) { in ModuleIsExcludedForUnconstrainedSearches() argument
1675 ModuleSpec module_spec(module_file_spec); in ModuleIsExcludedForUnconstrainedSearches()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectSource.cpp560 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
561 if (module_file_spec) { in DoExecute()
562 ModuleSpec module_spec(module_file_spec); in DoExecute()
882 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
883 if (module_file_spec) { in FindMatchingFunctions()
884 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
904 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
905 if (module_file_spec) { in FindMatchingFunctionSymbols()
906 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1150 if (module_file_spec) { in DoExecute()
[all …]
H A DCommandObjectTarget.cpp1732 FileSpec module_file_spec(module_name); in FindModulesByName() local
1733 ModuleSpec module_spec(module_file_spec); in FindModulesByName()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.cpp372 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
373 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
375 if (it.first == module_file_spec) { in GetLoadedModuleFileSpec()
381 module_file_spec.GetCString(), GetID()); in GetLoadedModuleFileSpec()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp308 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in AppleIsModuleObjCLibrary() local
311 if (module_file_spec) { in AppleIsModuleObjCLibrary()
312 if (module_file_spec.GetFilename() == ObjCName) in AppleIsModuleObjCLibrary()
/llvm-project-15.0.7/lldb/source/Core/
H A DModuleList.cpp652 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local
657 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths()
794 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local
913 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
918 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h22 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DPlatform.h295 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
H A DProcess.h2388 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp715 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
716 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
720 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
726 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp93 bool PlatformRemoteGDBServer::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
98 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec()
101 !m_gdb_client_up->GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
H A DPlatformRemoteGDBServer.h42 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp743 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
744 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
748 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
754 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp1732 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
1733 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
1737 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
1743 module_file_spec.GetFilename().AsCString(), GetID()); in GetLoadedModuleFileSpec()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h191 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DGDBRemoteCommunicationClient.h452 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DGDBRemoteCommunicationClient.cpp3756 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3761 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3789 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3863 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3865 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
H A DProcessGDBRemote.cpp4002 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4007 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4015 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4017 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4026 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
/llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1599 auto module_file_spec = in AddInitCompletionHook() local
1601 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()

12