Searched defs:platform_sp (Results 1 - 10 of 10) sorted by relevance

/external/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp32 PlatformSP platform_sp; local
36 platform_sp = Platform::Create (m_platform_name.c_str(), error);
37 if (platform_sp)
39 if (platform_arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch))
42 platform_sp->GetName().GetCString(),
44 platform_sp.reset();
45 return platform_sp;
51 platform_sp = Platform::Create (arch, &platform_arch, error);
54 if (platform_sp)
56 interpreter.GetDebugger().GetPlatformList().Append (platform_sp, make_selecte
[all...]
H A DCommandInterpreter.cpp2470 PlatformSP platform_sp; local
2476 platform_sp = target->GetPlatform();
2479 if (!platform_sp)
2480 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform();
2481 return platform_sp;
/external/lldb/source/Target/
H A DTargetList.cpp71 PlatformSP platform_sp; local
153 platform_sp = platform_options->CreatePlatformWithOptions (interpreter,
158 if (!platform_sp)
163 if (!platform_sp)
167 platform_sp = debugger.GetPlatformList().GetSelectedPlatform ();
169 if (arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch))
171 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch);
182 platform_sp,
192 PlatformSP &platform_sp,
203 if (platform_sp)
188 CreateTarget(Debugger &debugger, const char *user_exe_path, const ArchSpec& specified_arch, bool get_dependent_files, PlatformSP &platform_sp, TargetSP &target_sp) argument
[all...]
H A DPlatform.cpp75 Platform::SetDefaultPlatform (const lldb::PlatformSP &platform_sp) argument
79 GetDefaultPlatformSP () = platform_sp;
156 lldb::PlatformSP platform_sp; local
162 platform_sp.reset(create_callback(true, NULL));
168 return platform_sp;
175 lldb::PlatformSP platform_sp; local
186 platform_sp.reset(create_callback(false, &arch));
187 if (platform_sp && platform_sp->IsCompatibleArchitecture(arch, exact, platform_arch_ptr))
188 return platform_sp;
221 PlatformSP platform_sp; local
715 lldb::PlatformSP platform_sp; local
[all...]
H A DTarget.cpp62 Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp) : argument
67 m_platform_sp (platform_sp),
2452 PlatformSP platform_sp (m_target->GetPlatform());
2453 if (platform_sp)
2456 if (platform_sp->GetEnvironment(env))
/external/lldb/include/lldb/Target/
H A DPlatform.h68 SetDefaultPlatform (const lldb::PlatformSP &platform_sp);
678 Append (const lldb::PlatformSP &platform_sp, bool set_selected) argument
681 m_platforms.push_back (platform_sp);
696 lldb::PlatformSP platform_sp; local
700 platform_sp = m_platforms[idx];
702 return platform_sp;
725 SetSelectedPlatform (const lldb::PlatformSP &platform_sp) argument
727 if (platform_sp)
733 if (m_platforms[idx].get() == platform_sp.get())
739 m_platforms.push_back (platform_sp);
[all...]
H A DTarget.h427 const lldb::PlatformSP &platform_sp);
1155 SetPlatform (const lldb::PlatformSP &platform_sp) argument
1157 m_platform_sp = platform_sp;
/external/lldb/source/Commands/
H A DCommandObjectPlatform.cpp99 PlatformSP platform_sp (m_platform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch));
100 if (platform_sp)
102 platform_sp->GetStatus (result.GetOutputStream());
211 PlatformSP platform_sp; local
214 platform_sp = target->GetPlatform();
216 if (!platform_sp)
218 platform_sp = m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform();
220 if (platform_sp)
222 platform_sp->GetStatus (ostrm);
260 PlatformSP platform_sp (m_interprete
394 PlatformSP platform_sp; local
512 PlatformSP platform_sp; local
801 PlatformSP platform_sp; local
[all...]
/external/lldb/source/API/
H A DSBTarget.cpp891 PlatformSP platform_sp = target_sp->GetPlatform(); local
893 if (platform_sp && platform_sp->IsConnected())
897 if (platform_sp->GetProcessInfo(attach_pid, instance_info))
1019 PlatformSP platform_sp = target_sp->GetPlatform(); local
1021 if (platform_sp->GetProcessInfo(pid, instance_info))
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp668 PlatformSP platform_sp (m_target.GetPlatform());
669 if (platform_sp && platform_sp->IsHost() && !disable_stdio)
1831 PlatformSP platform_sp = GetTarget().GetPlatform(); local
1834 if (platform_sp
1835 && platform_sp->GetName()
1836 && platform_sp->GetName() == PlatformRemoteiOS::GetPluginNameStatic())
3054 PlatformSP platform_sp (m_target.GetPlatform());
3055 if (platform_sp)
3057 m_thread_create_bp_sp = platform_sp
[all...]

Completed in 281 milliseconds