Lines Matching refs:TargetSP
50 TargetSP &target_sp) { in CreateTarget()
65 PlatformSP &platform_sp, TargetSP &target_sp) { in CreateTarget()
79 const OptionGroupPlatform *platform_options, TargetSP &target_sp) { in CreateTargetInternal()
249 lldb::TargetSP &target_sp) { in CreateTargetInternal()
367 bool TargetList::DeleteTarget(TargetSP &target_sp) { in DeleteTarget()
377 TargetSP TargetList::FindTargetWithExecutableAndArchitecture( in FindTargetWithExecutableAndArchitecture()
381 [&exe_file_spec, exe_arch_ptr](const TargetSP &item) { in FindTargetWithExecutableAndArchitecture()
394 return TargetSP(); in FindTargetWithExecutableAndArchitecture()
397 TargetSP TargetList::FindTargetWithProcessID(lldb::pid_t pid) const { in FindTargetWithProcessID()
400 [pid](const TargetSP &item) { in FindTargetWithProcessID()
408 return TargetSP(); in FindTargetWithProcessID()
411 TargetSP TargetList::FindTargetWithProcess(Process *process) const { in FindTargetWithProcess()
412 TargetSP target_sp; in FindTargetWithProcess()
418 [process](const TargetSP &item) { in FindTargetWithProcess()
428 TargetSP TargetList::GetTargetSP(Target *target) const { in GetTargetSP()
429 TargetSP target_sp; in GetTargetSP()
435 [target](const TargetSP &item) { return item.get() == target; }); in GetTargetSP()
446 TargetSP target_sp(FindTargetWithProcessID(pid)); in SendAsyncInterrupt()
478 TargetSP target_sp(FindTargetWithProcessID(pid)); in SignalIfRunning()
495 lldb::TargetSP TargetList::GetTargetAtIndex(uint32_t idx) const { in GetTargetAtIndex()
496 TargetSP target_sp; in GetTargetAtIndex()
503 uint32_t TargetList::GetIndexOfTarget(lldb::TargetSP target_sp) const { in GetIndexOfTarget()
511 void TargetList::AddTargetInternal(TargetSP target_sp, bool do_select) { in AddTargetInternal()
529 void TargetList::SetSelectedTarget(const TargetSP &target_sp) { in SetSelectedTarget()
535 lldb::TargetSP TargetList::GetSelectedTarget() { in GetSelectedTarget()