Searched refs:process_up (Results 1 – 5 of 5) sorted by relevance
92 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local96 status = process_up->SetupTrace(); in Launch()100 for (const auto &thread : process_up->m_threads) in Launch()102 process_up->SetState(StateType::eStateStopped, false); in Launch()104 return std::move(process_up); in Launch()121 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Attach() local124 Status status = process_up->Attach(); in Attach()128 return std::move(process_up); in Attach()
97 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Launch() local101 status = process_up->SetupTrace(); in Launch()105 for (const auto &thread : process_up->m_threads) in Launch()107 process_up->SetState(StateType::eStateStopped, false); in Launch()109 return std::move(process_up); in Launch()126 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Attach() local129 Status status = process_up->Attach(); in Attach()133 return std::move(process_up); in Attach()
611 auto process_up = std::unique_ptr<NativeProcessWindows>( in Launch() local615 return std::move(process_up); in Launch()624 auto process_up = std::unique_ptr<NativeProcessWindows>( in Attach() local628 return std::move(process_up); in Attach()
1441 Status error = it->second.process_up->Kill(); in Handle_k()1470 Status error = it->second.process_up->Kill(); in Handle_vKill()1831 assert(process_it->second.process_up); in Handle_vCont()1833 if (process_it->second.process_up->IsRunning()) { in Handle_vCont()1930 if (it.second.process_up->IsRunning()) in SendStopReasonForState()2380 new_process_it->second.process_up->GetThreadByID(tid); in Handle_H()3561 if (it->second.process_up.get() == m_current_process) in Handle_D()3563 if (it->second.process_up.get() == m_continue_process) in Handle_D()3934 if (process_it.second.process_up->IsRunning()) { in Handle_QNonStop()4036 if (!new_process_it->second.process_up->GetThreadByID(tid)) in Handle_T()[all …]
95 std::unique_ptr<NativeProcessProtocol> process_up; member