| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | LocateSymbolFile.cpp | 277 FileSpec module_file_spec = module_spec.GetFileSpec(); in LocateExecutableSymbolFile() local 279 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile() 280 module_file_spec); in LocateExecutableSymbolFile() 282 ConstString file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile() 361 module_file_spec.GetPath())) in LocateExecutableSymbolFile()
|
| H A D | SymbolContext.cpp | 956 FileSpec module_file_spec(spec_string); in AddSpecification() local 957 ModuleSpec module_spec(module_file_spec); in AddSpecification() 1028 FileSpec module_file_spec(m_module_spec); in SymbolContextMatches() local 1029 if (!FileSpec::Match(module_file_spec, sc.module_sp->GetFileSpec())) in SymbolContextMatches()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectSource.cpp | 561 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local 562 if (module_file_spec) { in DoExecute() 563 ModuleSpec module_spec(module_file_spec); in DoExecute() 883 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctions() local 884 if (module_file_spec) { in FindMatchingFunctions() 885 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctions() 905 FileSpec module_file_spec(m_options.modules[i]); in FindMatchingFunctionSymbols() local 906 if (module_file_spec) { in FindMatchingFunctionSymbols() 907 ModuleSpec module_spec(module_file_spec); in FindMatchingFunctionSymbols() 1150 FileSpec module_file_spec(m_options.modules[i]); in DoExecute() local [all …]
|
| H A D | CommandObjectTarget.cpp | 1747 FileSpec module_file_spec(module_name); in FindModulesByName() local 1748 ModuleSpec module_spec(module_file_spec); in FindModulesByName()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | SectionLoadList.cpp | 156 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 D | ModuleCache.cpp | 78 FileSpec GetSymbolFileSpec(const FileSpec &module_file_spec) { in GetSymbolFileSpec() argument 79 return FileSpec(module_file_spec.GetPath() + kSymFileExtension); in GetSymbolFileSpec()
|
| H A D | RemoteAwarePlatform.cpp | 22 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 D | Platform.cpp | 242 bool Platform::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument 245 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0, in GetModuleSpec() 250 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch), in GetModuleSpec()
|
| H A D | Target.cpp | 1718 const FileSpec &module_file_spec) { in ModuleIsExcludedForUnconstrainedSearches() argument 1721 ModuleSpec module_spec(module_file_spec); in ModuleIsExcludedForUnconstrainedSearches()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | NativeProcessWindows.cpp | 372 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.GetPath().c_str(), GetID()); in GetLoadedModuleFileSpec()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 309 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()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | ModuleList.cpp | 657 const FileSpec &module_file_spec = module->GetFileSpec(); in LogUUIDAndPaths() local 662 module_file_spec.GetPath().c_str()); in LogUUIDAndPaths() 803 const FileSpec &module_file_spec = module_spec.GetFileSpec(); in GetSharedModule() local 922 if (located_binary_modulespec.GetFileSpec() != module_file_spec) { in GetSharedModule() 927 module_file_spec.GetPath(path, sizeof(path)); in GetSharedModule()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | RemoteAwarePlatform.h | 23 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
|
| H A D | Platform.h | 296 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
|
| H A D | Process.h | 2410 virtual bool GetModuleSpec(const FileSpec &module_file_spec,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 715 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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 95 bool PlatformRemoteGDBServer::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument 100 const auto module_path = module_file_spec.GetPath(false); in GetModuleSpec() 103 !m_gdb_client_up->GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec()
|
| H A D | PlatformRemoteGDBServer.h | 43 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 743 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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeProcessLinux.cpp | 1733 FileSpec module_file_spec(module_path); in GetLoadedModuleFileSpec() local 1734 FileSystem::Instance().Resolve(module_file_spec); in GetLoadedModuleFileSpec() 1738 if (it.second.GetFilename() == module_file_spec.GetFilename()) { in GetLoadedModuleFileSpec() 1744 module_file_spec.GetFilename().AsCString(), GetID()); in GetLoadedModuleFileSpec()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 190 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
|
| H A D | GDBRemoteCommunicationClient.h | 449 bool GetModuleInfo(const FileSpec &module_file_spec,
|
| H A D | GDBRemoteCommunicationClient.cpp | 3762 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec, in GetModuleInfo() argument 3767 std::string module_path = module_file_spec.GetPath(false); in GetModuleInfo() 3795 module_spec.GetFileSpec() = module_file_spec; in GetModuleInfo() 3869 for (const FileSpec &module_file_spec : module_file_specs) { in GetModulesInfo() local 3871 json::Object{{"file", module_file_spec.GetPath(false)}, in GetModulesInfo()
|
| H A D | ProcessGDBRemote.cpp | 3965 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec, in GetModuleSpec() argument 3970 const ModuleCacheKey key(module_file_spec.GetPath(), in GetModuleSpec() 3978 if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) { in GetModuleSpec() 3980 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec() 3989 __FUNCTION__, module_file_spec.GetPath().c_str(), in GetModuleSpec()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1599 auto module_file_spec = in AddInitCompletionHook() local 1601 module_spec_list.Append(module_file_spec); in AddInitCompletionHook()
|