HomeSort by relevance Sort by last modified time
    Searched refs:platform_sp (Results 1 - 19 of 19) sorted by null

  /external/lldb/source/Interpreter/
OptionGroupPlatform.cpp 32 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_selected)
    [all...]
CommandInterpreter.cpp 2470 PlatformSP platform_sp; local
    [all...]
  /external/lldb/source/Commands/
CommandObjectPlatform.cpp 99 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_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform())
394 PlatformSP platform_sp; local
512 PlatformSP platform_sp; local
801 PlatformSP platform_sp; local
    [all...]
CommandObjectProcess.cpp 271 PlatformSP platform_sp (target->GetPlatform());
273 if (platform_sp && platform_sp->CanDebugProcess ())
488 PlatformSP platform_sp (m_interpreter.GetPlatform (true));
489 if (platform_sp)
498 platform_sp->FindProcesses (match_info, process_infos);
    [all...]
CommandObjectTarget.cpp 82 PlatformSP platform_sp (target->GetPlatform());
83 if (platform_sp)
84 strm.Printf ("%splatform=%s", properties++ > 0 ? ", " : " ( ", platform_sp->GetName().GetCString());
    [all...]
  /external/lldb/source/Target/
Platform.cpp 75 Platform::SetDefaultPlatform (const lldb::PlatformSP &platform_sp)
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...]
TargetList.cpp 71 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)
    [all...]
Process.cpp     [all...]
Target.cpp 62 Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp) :
67 m_platform_sp (platform_sp),
    [all...]
  /external/lldb/include/lldb/Target/
Platform.h 68 SetDefaultPlatform (const lldb::PlatformSP &platform_sp);
678 Append (const lldb::PlatformSP &platform_sp, bool set_selected)
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)
727 if (platform_sp)
733 if (m_platforms[idx].get() == platform_sp.get())
739 m_platforms.push_back (platform_sp);
    [all...]
TargetList.h 118 lldb::PlatformSP &platform_sp,
Target.h 427 const lldb::PlatformSP &platform_sp);
    [all...]
  /external/lldb/source/API/
SBDebugger.cpp 638 PlatformSP platform_sp(m_opaque_sp->GetPlatformList().GetSelectedPlatform());
643 platform_sp,
1107 PlatformSP platform_sp (Platform::Create (platform_name, sb_error.ref()));
1109 if (platform_sp)
1112 m_opaque_sp->GetPlatformList().Append (platform_sp, make_selected);
1123 PlatformSP platform_sp (m_opaque_sp->GetPlatformList().GetSelectedPlatform());
1125 if (platform_sp)
1127 platform_sp->SetSDKRootDirectory (ConstString (sysroot));
    [all...]
SBTarget.cpp 891 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))
    [all...]
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.cpp 131 PlatformSP platform_sp (m_target.GetPlatform ());
132 assert (platform_sp.get());
133 if (!platform_sp)
138 platform_sp->GetProcessInfo (pid, process_info);
143 error = platform_sp->ResolveExecutable(process_info.GetExecutableFile(),
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 463 PlatformSP platform_sp(Platform::FindPlugin (process, PlatformDarwinKernel::GetPluginNameStatic ()));
467 if (platform_sp.get() && GetGlobalProperties()->GetLoadKexts())
469 process->GetTarget().SetPlatform (platform_sp);
811 PlatformSP platform_sp (target.GetPlatform());
812 if (platform_sp)
814 ConstString platform_name (platform_sp->GetPluginName());
821 platform_sp->GetSharedModule (kext_bundle_module_spec, m_module_sp, &target.GetExecutableSearchPaths(), NULL, NULL);
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 668 PlatformSP platform_sp (m_target.GetPlatform());
669 if (platform_sp && platform_sp->IsHost() && !disable_stdio)
1831 PlatformSP platform_sp = GetTarget().GetPlatform(); local
    [all...]
  /external/lldb/source/Core/
Module.cpp     [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp     [all...]

Completed in 772 milliseconds