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()
216 PlatformSP Platform::Create(llvm::StringRef name) { in Create()
217 lldb::PlatformSP platform_sp; in Create()
2094 PlatformSP PlatformList::GetOrCreate(llvm::StringRef name) { in GetOrCreate()
2096 for (const PlatformSP &platform_sp : m_platforms) { in GetOrCreate()
2103 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2129 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
2141 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
2154 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2163 PlatformSP PlatformList::GetOrCreate(llvm::ArrayRef<ArchSpec> archs, in GetOrCreate()
2165 std::vector<PlatformSP> &candidates) { in GetOrCreate()
2172 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in GetOrCreate()
2194 if (PlatformSP platform = GetOrCreate(arch, process_host_arch, nullptr)) in GetOrCreate()
2202 if (llvm::all_of(candidates, [&](const PlatformSP &p) -> bool { in GetOrCreate()
2215 PlatformSP PlatformList::Create(llvm::StringRef name) { in Create()
2217 PlatformSP platform_sp = Platform::Create(name); in Create()
2231 PlatformSP platform_sp = create_callback(true, &arch); in LoadPlatformBinaryAndSetup()