Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp112 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local
114 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
115 module_file_spec); in LocateExecutableSymbolFile()
117 ConstString file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
214 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
H A DSymbolContext.cpp950 FileSpec module_file_spec(spec_string); in AddSpecification() local
951 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1022 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1023 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp546 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
547 if (module_file_spec) { in DoExecute()
548 ModuleSpec module_spec(module_file_spec); in DoExecute()
871 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
872 if (module_file_spec) { in FindMatchingFunctions()
873 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
893 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
894 if (module_file_spec) { in FindMatchingFunctionSymbols()
895 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1126 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp156 const FileSpec &module_file_spec( in SetSectionUnloaded() local
158 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
191 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded() local
192 module_name = module_file_spec.GetPath(); in SetSectionUnloaded()
H A DPlatform.cpp204 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
207 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec()
212 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
1601 FileSpec module_file_spec; in CallLocateModuleCallbackIfSet() local
1603 m_locate_module_callback(module_spec, module_file_spec, symbol_file_spec); in CallLocateModuleCallbackIfSet()
1624 if (!module_file_spec && !symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1635 if (module_file_spec && !FileSystem::Instance().Exists(module_file_spec)) { in CallLocateModuleCallbackIfSet()
1639 LLVM_PRETTY_FUNCTION, module_file_spec.GetPath().c_str()); in CallLocateModuleCallbackIfSet()
1656 if (!module_file_spec && symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1675 cached_module_spec.GetFileSpec() = module_file_spec; in CallLocateModuleCallbackIfSet()
[all …]
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 DModuleCache.cpp78 FileSpec GetSymbolFileSpec(const FileSpec &module_file_spec) { in GetSymbolFileSpec() argument
79 return FileSpec(module_file_spec.GetPath() + kSymFileExtension); in GetSymbolFileSpec()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp44 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in CanModuleBeGNUstepObjCLibrary() local
45 if (!module_file_spec) in CanModuleBeGNUstepObjCLibrary()
47 llvm::StringRef filename = module_file_spec.GetFilename().GetStringRef(); in CanModuleBeGNUstepObjCLibrary()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp315 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in AppleIsModuleObjCLibrary() local
318 if (module_file_spec) { in AppleIsModuleObjCLibrary()
319 if (module_file_spec.GetFilename() == ObjCName) in AppleIsModuleObjCLibrary()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp660 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local
665 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths()
806 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local
926 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
931 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h28 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DPlatform.h317 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
969 FileSpec &module_file_spec,
H A DProcess.h2580 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp745 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
746 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
750 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
757 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp766 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
767 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
771 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
778 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp101 bool PlatformRemoteGDBServer::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
106 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec()
109 !m_gdb_client_up->GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
H A DPlatformRemoteGDBServer.h43 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDefines.h153 lldb::SBFileSpec &module_file_spec, lldb::SBFileSpec &symbol_file_spec);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp716 FileSpec &module_file_spec, in SetLocateModuleCallback()
726 module_file_spec = module_file_spec_sb.ref(); in SetLocateModuleCallback()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1597 auto module_file_spec = in AddInitCompletionHook() local
1599 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()
/freebsd/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.h459 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DGDBRemoteCommunicationClient.cpp3851 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3856 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3884 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3958 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3960 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
H A DProcessGDBRemote.cpp4241 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4246 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4254 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4256 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4265 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()

12