Lines Matching refs:PlatformSP
56 static PlatformSP &GetHostPlatformSP() { in GetHostPlatformSP()
57 static PlatformSP g_platform_sp; in GetHostPlatformSP()
134 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform()
145 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform()
250 PlatformSP Platform::Create(llvm::StringRef name) { in Create()
251 lldb::PlatformSP platform_sp; in Create()
2142 PlatformSP PlatformList::GetOrCreate(llvm::StringRef name) { in GetOrCreate()
2144 for (const PlatformSP &platform_sp : m_platforms) { in GetOrCreate()
2151 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2177 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
2189 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
2202 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2211 PlatformSP PlatformList::GetOrCreate(llvm::ArrayRef<ArchSpec> archs, in GetOrCreate()
2213 std::vector<PlatformSP> &candidates) { in GetOrCreate()
2220 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in GetOrCreate()
2242 if (PlatformSP platform = GetOrCreate(arch, process_host_arch, nullptr)) in GetOrCreate()
2250 if (llvm::all_of(candidates, [&](const PlatformSP &p) -> bool { in GetOrCreate()
2263 PlatformSP PlatformList::Create(llvm::StringRef name) { in Create()
2265 PlatformSP platform_sp = Platform::Create(name); in Create()
2279 PlatformSP platform_sp = create_callback(true, &arch); in LoadPlatformBinaryAndSetup()