Home
last modified time | relevance | path

Searched refs:default_platform_sp (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
DPlatformOpenBSD.cpp100 PlatformSP default_platform_sp(new PlatformOpenBSD(true)); in Initialize() local
101 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
102 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp59 PlatformSP default_platform_sp(new PlatformMacOSX()); in Initialize() local
60 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
61 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/NetBSD/
DPlatformNetBSD.cpp94 PlatformSP default_platform_sp(new PlatformNetBSD(true)); in Initialize() local
95 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
96 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.cpp101 PlatformSP default_platform_sp(new PlatformLinux(true)); in Initialize() local
102 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
103 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp105 PlatformSP default_platform_sp(new PlatformFreeBSD(true)); in Initialize() local
106 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
107 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/Windows/
DPlatformWindows.cpp130 PlatformSP default_platform_sp(new PlatformWindows(true)); in Initialize() local
131 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
132 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Plugins/Platform/Android/
DPlatformAndroid.cpp40 PlatformSP default_platform_sp(new PlatformAndroid(true)); in Initialize() local
41 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture()); in Initialize()
42 Platform::SetHostPlatform(default_platform_sp); in Initialize()
/external/llvm-project/lldb/source/Core/
DDebugger.cpp681 PlatformSP default_platform_sp(Platform::GetHostPlatform()); in Debugger() local
682 assert(default_platform_sp); in Debugger()
683 m_platform_list.Append(default_platform_sp, true); in Debugger()
693 new Target(*this, arch, default_platform_sp, is_dummy_target)); in Debugger()