reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
   24     platform_sp = Platform::Create(ConstString(m_platform_name.c_str()), error);
   25     if (platform_sp) {
   27           !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch)) {
   29                                        platform_sp->GetName().GetCString(),
   31         platform_sp.reset();
   32         return platform_sp;
   36     platform_sp = Platform::Create(arch, &platform_arch, error);
   39   if (platform_sp) {
   40     interpreter.GetDebugger().GetPlatformList().Append(platform_sp,
   43       platform_sp->SetOSVersion(m_os_version);
   46       platform_sp->SetSDKRootDirectory(m_sdk_sysroot);
   49       platform_sp->SetSDKBuild(m_sdk_build);
   52   return platform_sp;