Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp108 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local
110 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
111 module_file_spec); in LocateExecutableSymbolFile()
113 ConstString file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
192 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
/freebsd-14.2/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()
875 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local
876 if (module_file_spec) { in FindMatchingFunctions()
877 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions()
897 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local
898 if (module_file_spec) { in FindMatchingFunctionSymbols()
899 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols()
1116 if (module_file_spec) { in DoExecute()
[all …]
/freebsd-14.2/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-14.2/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.cpp238 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
241 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec()
246 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
1640 FileSpec module_file_spec; in CallLocateModuleCallbackIfSet() local
1663 if (!module_file_spec && !symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1674 if (module_file_spec && !FileSystem::Instance().Exists(module_file_spec)) { in CallLocateModuleCallbackIfSet()
1678 LLVM_PRETTY_FUNCTION, module_file_spec.GetPath().c_str()); in CallLocateModuleCallbackIfSet()
1695 if (!module_file_spec && symbol_file_spec) { in CallLocateModuleCallbackIfSet()
1714 cached_module_spec.GetFileSpec() = module_file_spec; in CallLocateModuleCallbackIfSet()
1723 LLVM_PRETTY_FUNCTION, module_file_spec.GetPath().c_str(), in CallLocateModuleCallbackIfSet()
[all …]
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.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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp309 const FileSpec &module_file_spec = module_sp->GetFileSpec(); in AppleIsModuleObjCLibrary() local
312 if (module_file_spec) { in AppleIsModuleObjCLibrary()
313 if (module_file_spec.GetFilename() == ObjCName) in AppleIsModuleObjCLibrary()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp655 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local
660 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths()
801 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local
920 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule()
925 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h23 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
H A DPlatform.h327 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
918 FileSpec &module_file_spec,
H A DProcess.h2516 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp713 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
714 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
718 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
724 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp762 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local
763 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec()
767 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec()
773 module_file_spec.GetFilename().AsCString()); in GetLoadedModuleFileSpec()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDefines.h142 void *baton, const SBModuleSpec &module_spec, SBFileSpec &module_file_spec,
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp959 FileSpec module_file_spec(spec_string); in AddSpecification() local
960 ModuleSpec module_spec(module_file_spec); in AddSpecification()
1031 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local
1032 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp719 FileSpec &module_file_spec, in SetLocateModuleCallback()
729 module_file_spec = module_file_spec_sb.ref(); in SetLocateModuleCallback()
/freebsd-14.2/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.h446 bool GetModuleInfo(const FileSpec &module_file_spec,
H A DGDBRemoteCommunicationClient.cpp3759 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument
3764 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo()
3792 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo()
3866 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local
3868 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
H A DProcessGDBRemote.cpp4100 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument
4105 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec()
4113 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
4115 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
4124 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1589 auto module_file_spec = in AddInitCompletionHook() local
1591 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig1114 return SBError("module_file_spec is not SBFileSpec.");

12