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.cpp968 FileSpec module_file_spec(spec_string); in AddSpecification() local
969 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1040 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1041 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp554 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local
555 if (module_file_spec) { in DoExecute()
556 ModuleSpec module_spec(module_file_spec); in DoExecute()
879 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
880 if (module_file_spec) { in FindMatchingFunctions()
881 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
901 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
902 if (module_file_spec) { in FindMatchingFunctionSymbols()
903 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1119 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()
1592 FileSpec module_file_spec; in CallLocateModuleCallbackIfSet() local
1594 m_locate_module_callback(module_spec, module_file_spec, symbol_file_spec); in CallLocateModuleCallbackIfSet()
1615 if (!module_file_spec && !symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1626 if (module_file_spec && !FileSystem::Instance().Exists(module_file_spec)) { in CallLocateModuleCallbackIfSet()
1630 LLVM_PRETTY_FUNCTION, module_file_spec.GetPath().c_str()); in CallLocateModuleCallbackIfSet()
1647 if (!module_file_spec && symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1666 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
925 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
930 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.h314 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
905 FileSpec &module_file_spec,
H A DProcess.h2541 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp762 FileSpec module_file_spec(module_path); in GetFileLoadAddress()
763 FileSystem::Instance().Resolve(module_file_spec); in GetFileLoadAddress()
767 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetFileLoadAddress()
773 module_file_spec.GetFilename().AsCString()); in SigchldHandler()
741 FileSpec module_file_spec(module_path); GetLoadedModuleFileSpec() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp738 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
739 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
743 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
749 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.h146 void *baton, const SBModuleSpec &module_spec, SBFileSpec &module_file_spec,
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp719 FileSpec &module_file_spec,
729 module_file_spec = module_file_spec_sb.ref();
680 __anon7928ee700602(const ModuleSpec &module_spec, FileSpec &module_file_spec, FileSpec &symbol_file_spec) SetLocateModuleCallback() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1589 auto module_file_spec = in AddInitCompletionHook()
1591 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()
1593 auto module_file_spec = AddInitCompletionHook() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h195 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DGDBRemoteCommunicationClient.h448 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DGDBRemoteCommunicationClient.cpp3832 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3837 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3865 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3939 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3941 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
H A DProcessGDBRemote.cpp4111 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4116 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4124 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4126 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4135 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()

12