Searched refs:process_up (Results 1 – 4 of 4) sorted by relevance
110 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local114 status = process_up->SetupTrace(); in Launch()118 for (const auto &thread : process_up->m_threads) in Launch()120 process_up->SetState(StateType::eStateStopped, false); in Launch()122 return std::move(process_up); in Launch()138 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Attach() local141 Status status = process_up->Attach(); in Attach()145 return std::move(process_up); in Attach()
96 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Launch() local100 status = process_up->SetupTrace(); in Launch()104 for (const auto &thread : process_up->m_threads) in Launch()106 process_up->SetState(StateType::eStateStopped, false); in Launch()108 return std::move(process_up); in Launch()124 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Attach() local127 Status status = process_up->Attach(); in Attach()131 return std::move(process_up); in Attach()
1443 Status error = it->second.process_up->Kill(); in Handle_k()1472 Status error = it->second.process_up->Kill(); in Handle_vKill()1840 assert(process_it->second.process_up); in Handle_vCont()1842 if (process_it->second.process_up->IsRunning()) { in Handle_vCont()1845 Status error = process_it->second.process_up->Interrupt(); in Handle_vCont()1861 ResumeProcess(*process_it->second.process_up, x.second); in Handle_vCont()1939 if (it.second.process_up->IsRunning()) in SendStopReasonForState()2102 AddProcessThreads(response, *pid_ptr.second.process_up, had_any); in Handle_qfThreadInfo()2388 new_process_it->second.process_up->GetThreadByID(tid); in Handle_H()2401 m_current_process = new_process_it->second.process_up.get(); in Handle_H()[all …]
96 std::unique_ptr<NativeProcessProtocol> process_up; member