Lines Matching defs:platform_sp
145 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) {
148 GetHostPlatformSP() = platform_sp;
217 lldb::PlatformSP platform_sp;
2109 for (const PlatformSP &platform_sp : m_platforms) {
2110 if (platform_sp->GetName() == name)
2111 return platform_sp;
2122 for (const auto &platform_sp : m_platforms) {
2123 if (platform_sp->IsCompatibleArchitecture(
2125 return platform_sp;
2129 for (const auto &platform_sp : m_platforms) {
2130 if (platform_sp->IsCompatibleArchitecture(arch, process_host_arch,
2133 return platform_sp;
2142 PlatformSP platform_sp = create_callback(false, &arch);
2143 if (platform_sp &&
2144 platform_sp->IsCompatibleArchitecture(
2146 m_platforms.push_back(platform_sp);
2147 return platform_sp;
2154 PlatformSP platform_sp = create_callback(false, &arch);
2155 if (platform_sp && platform_sp->IsCompatibleArchitecture(
2158 m_platforms.push_back(platform_sp);
2159 return platform_sp;
2230 PlatformSP platform_sp = Platform::Create(name);
2231 m_platforms.push_back(platform_sp);
2232 return platform_sp;
2244 PlatformSP platform_sp = create_callback(true, &arch);
2245 if (platform_sp) {
2246 if (platform_sp->LoadPlatformBinaryAndSetup(process, addr, notify))