• Home
  • Raw
  • Download

Lines Matching refs:platform_sp

163 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) {  in SetHostPlatform()  argument
166 GetHostPlatformSP() = platform_sp; in SetHostPlatform()
168 if (platform_sp) { in SetHostPlatform()
170 GetPlatformList().push_back(platform_sp); in SetHostPlatform()
281 for (const auto &platform_sp : GetPlatformList()) { in Find() local
282 if (platform_sp->GetName() == name) in Find()
283 return platform_sp; in Find()
291 lldb::PlatformSP platform_sp; in Create() local
300 platform_sp = create_callback(true, nullptr); in Create()
308 if (platform_sp) { in Create()
310 GetPlatformList().push_back(platform_sp); in Create()
313 return platform_sp; in Create()
318 lldb::PlatformSP platform_sp; in Create() local
324 for (const auto &platform_sp : GetPlatformList()) { in Create() local
325 if (platform_sp->IsCompatibleArchitecture(arch, true, in Create()
327 return platform_sp; in Create()
331 for (const auto &platform_sp : GetPlatformList()) { in Create() local
332 if (platform_sp->IsCompatibleArchitecture(arch, false, in Create()
334 return platform_sp; in Create()
345 platform_sp = create_callback(false, &arch); in Create()
346 if (platform_sp && in Create()
347 platform_sp->IsCompatibleArchitecture(arch, true, in Create()
350 GetPlatformList().push_back(platform_sp); in Create()
351 return platform_sp; in Create()
360 platform_sp = create_callback(false, &arch); in Create()
361 if (platform_sp && in Create()
362 platform_sp->IsCompatibleArchitecture(arch, false, in Create()
365 GetPlatformList().push_back(platform_sp); in Create()
366 return platform_sp; in Create()
374 platform_sp.reset(); in Create()
375 return platform_sp; in Create()
1179 lldb::PlatformSP platform_sp; in GetPlatformForArchitecture() local
1182 platform_sp = Platform::Create(arch, platform_arch_ptr, error); in GetPlatformForArchitecture()
1183 return platform_sp; in GetPlatformForArchitecture()