Home
last modified time | relevance | path

Searched refs:GetPlatformFileSpec (Results 1 – 25 of 27) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DModuleSpec.h65 FileSpec &GetPlatformFileSpec() { return m_platform_file; } in GetPlatformFileSpec() function
67 const FileSpec &GetPlatformFileSpec() const { return m_platform_file; } in GetPlatformFileSpec() function
236 if (GetPlatformFileSpec() && in Matches()
237 !FileSpec::Match(match_module_spec.GetPlatformFileSpec(), in Matches()
238 GetPlatformFileSpec())) { in Matches()
H A DModule.h512 const FileSpec &GetPlatformFileSpec() const { in GetPlatformFileSpec() function
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBModuleSpec.i57 A const reference to the file specification object.") GetPlatformFileSpec;
59 GetPlatformFileSpec ();
H A DSBModule.i175 A const reference to the file specification object.") GetPlatformFileSpec;
177 GetPlatformFileSpec () const;
572 …platform_file = property(GetPlatformFileSpec, None, doc='''A read only property that returns an ll…
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBModuleSpec.cpp71 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec() function in SBModuleSpec
74 return SBFileSpec(m_opaque_up->GetPlatformFileSpec()); in GetPlatformFileSpec()
80 m_opaque_up->GetPlatformFileSpec() = *sb_spec; in SetPlatformFileSpec()
H A DSBModule.cpp116 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const { in GetPlatformFileSpec() function in SBModule
122 file_spec.SetFileSpec(module_sp->GetPlatformFileSpec()); in GetPlatformFileSpec()
H A DSBTarget.cpp273 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), in LaunchSimple()
355 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
412 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
H A DSBProcess.cpp144 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBModuleSpec.h58 lldb::SBFileSpec GetPlatformFileSpec();
H A DSBModule.h65 lldb::SBFileSpec GetPlatformFileSpec() const;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Android/
H A DPlatformAndroid.cpp290 if (!module_sp->GetPlatformFileSpec()) in DownloadSymbolFile()
329 module_sp->GetPlatformFileSpec().GetPath(false).c_str(), in DownloadSymbolFile()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModule.cpp211 if (module_spec.GetPlatformFileSpec()) in Module()
212 m_platform_file = module_spec.GetPlatformFileSpec(); in Module()
213 else if (matching_module_spec.GetPlatformFileSpec()) in Module()
214 m_platform_file = matching_module_spec.GetPlatformFileSpec(); in Module()
1575 const FileSpec &platform_file_spec = module_ref.GetPlatformFileSpec(); in MatchesModuleSpec()
1576 if (!FileSpec::Match(platform_file_spec, GetPlatformFileSpec())) in MatchesModuleSpec()
H A DModuleList.cpp243 equivalent_module_spec.GetPlatformFileSpec() = in ReplaceEquivalent()
244 module_sp->GetPlatformFileSpec(); in ReplaceEquivalent()
960 platform_module_spec.GetPlatformFileSpec() = in GetSharedModule()
H A DIOHandlerCursesGUI.cpp3419 launch_info.SetExecutableFile(executable_module->GetPlatformFileSpec(), in GetExecutableSettings()
3424 launch_info.SetExecutableFile(executable_module->GetPlatformFileSpec(), in GetExecutableSettings()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinDevice.cpp308 module_spec.GetPlatformFileSpec().GetDirectory().AsCString(), in GetSharedModuleWithLocalCache()
309 module_spec.GetPlatformFileSpec().GetFilename().AsCString(), in GetSharedModuleWithLocalCache()
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp107 FileSpec file_spec(executable->GetPlatformFileSpec()); in GetLoadAddress()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymbolContext.cpp809 reexport_module_spec.GetPlatformFileSpec() = in FindBestGlobalDataSymbol()
811 if (reexport_module_spec.GetPlatformFileSpec()) { in FindBestGlobalDataSymbol()
815 reexport_module_spec.GetPlatformFileSpec().ClearDirectory(); in FindBestGlobalDataSymbol()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DModuleCache.cpp252 cached_module_spec.GetPlatformFileSpec() = module_spec.GetFileSpec(); in Get()
H A DPlatform.cpp1499 module_spec.GetPlatformFileSpec() = platform_spec; in GetCachedExecutable()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp254 std::string system_path = module_sp->GetPlatformFileSpec().GetPath(); in BuildModulesSection()
H A DTraceIntelPTBundleLoader.cpp43 module_spec.GetPlatformFileSpec() = system_file_spec; in ParseModule()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTarget.cpp3401 sc.module_sp->GetPlatformFileSpec().GetFilename().AsCString(), in DoExecute()
4089 if (!module_spec.GetFileSpec() && !module_spec.GetPlatformFileSpec()) in AddModuleSymbols()
4274 module_spec.GetPlatformFileSpec() = module_sp->GetPlatformFileSpec(); in AddSymbolsForFile()
4326 if (FileSystem::Instance().Exists(frame_module_sp->GetPlatformFileSpec())) { in AddSymbolsForFrame()
4328 module_spec.GetFileSpec() = frame_module_sp->GetPlatformFileSpec(); in AddSymbolsForFrame()
4376 frame_module_sp->GetPlatformFileSpec())) { in AddSymbolsForStack()
4378 module_spec.GetFileSpec() = frame_module_sp->GetPlatformFileSpec(); in AddSymbolsForStack()
H A DCommandObjectProcess.cpp235 exe_module_sp->GetPlatformFileSpec(), false); in DoExecute()
241 exe_module_sp->GetPlatformFileSpec(), true); in DoExecute()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp564 reexport_module_spec.GetPlatformFileSpec() = in GetSymbolAddress()
566 if (reexport_module_spec.GetPlatformFileSpec()) { in GetSymbolAddress()
570 reexport_module_spec.GetPlatformFileSpec().ClearDirectory(); in GetSymbolAddress()
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp120 m_exe_file_spec = exe_mod->GetPlatformFileSpec(); in UpdateExecutablePath()

12