Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSymbols.cpp264 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local
266 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, module_file_spec); in LocateExecutableSymbolFile()
268 const ConstString &file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
341 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadList.cpp144 const FileSpec &module_file_spec( in SetSectionUnloaded() local
146 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
179 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded() local
180 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 DPlatform.cpp258 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
261 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec()
266 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
H A DTarget.cpp1682 const FileSpec &module_file_spec) { in ModuleIsExcludedForUnconstrainedSearches() argument
1685 ModuleSpec module_spec(module_file_spec); in ModuleIsExcludedForUnconstrainedSearches()
H A DProcess.cpp5963 bool Process::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectSource.cpp595 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
596 if (module_file_spec) { in DoExecute()
597 ModuleSpec module_spec(module_file_spec); in DoExecute()
920 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
921 if (module_file_spec) { in FindMatchingFunctions()
922 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
945 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
946 if (module_file_spec) { in FindMatchingFunctionSymbols()
947 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1203 if (module_file_spec) { in DoExecute()
[all …]
H A DCommandObjectTarget.cpp1790 FileSpec module_file_spec(module_name); in FindModulesByName() local
1791 ModuleSpec module_spec(module_file_spec); in FindModulesByName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp287 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in AppleIsModuleObjCLibrary() local
290 if (module_file_spec) { in AppleIsModuleObjCLibrary()
291 if (module_file_spec.GetFilename() == ObjCName) in AppleIsModuleObjCLibrary()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModuleList.cpp648 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local
653 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths()
794 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local
910 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
915 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp162 bool PlatformRemoteGDBServer::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
167 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec()
169 if (!m_gdb_client.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
H A DPlatformRemoteGDBServer.h53 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolContext.cpp997 FileSpec module_file_spec(spec_string); in AddSpecification() local
998 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1066 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1067 if (!FileSpec::Equal(module_file_spec, sc.module_sp->GetFileSpec(), in SymbolContextMatches()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h29 bool GetModuleSpec(const lldb_private::FileSpec &module_file_spec,
H A DPlatformPOSIX.cpp59 bool PlatformPOSIX::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
63 return m_remote_platform_sp->GetModuleSpec(module_file_spec, arch, in GetModuleSpec()
66 return Platform::GetModuleSpec(module_file_spec, arch, module_spec); in GetModuleSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h443 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DProcessGDBRemote.h216 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DGDBRemoteCommunicationClient.cpp3500 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3505 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3533 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3606 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3610 "file", std::make_shared<JSONString>(module_file_spec.GetPath(false))); in GetModulesInfo()
H A DProcessGDBRemote.cpp4291 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4296 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4304 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4307 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4316 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1679 auto module_file_spec = in AddInitCompletionHook() local
1681 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h331 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
H A DProcess.h2654 virtual bool GetModuleSpec(const FileSpec &module_file_spec,