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()
290 lldb::TargetSP &target_sp) { in CreateTargetInternal()
407 bool TargetList::DeleteTarget(TargetSP &target_sp) { in DeleteTarget()
417 TargetSP TargetList::FindTargetWithExecutableAndArchitecture( in FindTargetWithExecutableAndArchitecture()
421 [&exe_file_spec, exe_arch_ptr](const TargetSP &item) { in FindTargetWithExecutableAndArchitecture()
434 return TargetSP(); in FindTargetWithExecutableAndArchitecture()
437 TargetSP TargetList::FindTargetWithProcessID(lldb::pid_t pid) const { in FindTargetWithProcessID()
440 [pid](const TargetSP &item) { in FindTargetWithProcessID()
448 return TargetSP(); in FindTargetWithProcessID()
451 TargetSP TargetList::FindTargetWithProcess(Process *process) const { in FindTargetWithProcess()
452 TargetSP target_sp; in FindTargetWithProcess()
458 [process](const TargetSP &item) { in FindTargetWithProcess()
468 TargetSP TargetList::GetTargetSP(Target *target) const { in GetTargetSP()
469 TargetSP target_sp; in GetTargetSP()
475 [target](const TargetSP &item) { return item.get() == target; }); in GetTargetSP()
486 TargetSP target_sp(FindTargetWithProcessID(pid)); in SendAsyncInterrupt()
518 TargetSP target_sp(FindTargetWithProcessID(pid)); in SignalIfRunning()
535 lldb::TargetSP TargetList::GetTargetAtIndex(uint32_t idx) const { in GetTargetAtIndex()
536 TargetSP target_sp; in GetTargetAtIndex()
543 uint32_t TargetList::GetIndexOfTarget(lldb::TargetSP target_sp) const { in GetIndexOfTarget()
551 void TargetList::AddTargetInternal(TargetSP target_sp, bool do_select) { in AddTargetInternal()
570 void TargetList::SetSelectedTarget(const TargetSP &target_sp) { in SetSelectedTarget()
576 lldb::TargetSP TargetList::GetSelectedTarget() { in GetSelectedTarget()