Lines Matching refs:PlatformSP
56 static PlatformSP &GetHostPlatformSP() { in GetHostPlatformSP()
57 static PlatformSP g_platform_sp; in GetHostPlatformSP()
136 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform()
147 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform()
253 PlatformSP Platform::Create(llvm::StringRef name) { in Create()
254 lldb::PlatformSP platform_sp; in Create()
1952 PlatformSP PlatformList::GetOrCreate(llvm::StringRef name) { in GetOrCreate()
1954 for (const PlatformSP &platform_sp : m_platforms) { in GetOrCreate()
1961 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
1986 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
1997 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
2009 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2018 PlatformSP PlatformList::GetOrCreate(llvm::ArrayRef<ArchSpec> archs, in GetOrCreate()
2020 std::vector<PlatformSP> &candidates) { in GetOrCreate()
2027 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in GetOrCreate()
2049 if (PlatformSP platform = GetOrCreate(arch, process_host_arch, nullptr)) in GetOrCreate()
2058 [&](const PlatformSP &p) -> bool { in GetOrCreate()
2071 PlatformSP PlatformList::Create(llvm::StringRef name) { in Create()
2073 PlatformSP platform_sp = Platform::Create(name); in Create()