Home
last modified time | relevance | path

Searched refs:process_up (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp91 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local
95 status = process_up->SetupTrace(); in Launch()
99 for (const auto &thread : process_up->m_threads) in Launch()
101 process_up->SetState(StateType::eStateStopped, false); in Launch()
103 return std::move(process_up); in Launch()
119 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Attach() local
122 Status status = process_up->Attach(); in Attach()
126 return std::move(process_up); in Attach()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp96 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Launch() local
100 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() local
127 Status status = process_up->Attach(); in Attach()
131 return std::move(process_up); in Attach()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1439 Status error = it->second.process_up->Kill(); in Handle_k()
1468 Status error = it->second.process_up->Kill(); in Handle_vKill()
1836 assert(process_it->second.process_up); in Handle_vCont()
1838 if (process_it->second.process_up->IsRunning()) { in Handle_vCont()
1935 if (it.second.process_up->IsRunning()) in SendStopReasonForState()
2384 new_process_it->second.process_up->GetThreadByID(tid); in Handle_H()
3583 if (it->second.process_up.get() == m_current_process) in Handle_D()
3585 if (it->second.process_up.get() == m_continue_process) in Handle_D()
3956 if (process_it.second.process_up->IsRunning()) { in Handle_QNonStop()
4058 if (!new_process_it->second.process_up->GetThreadByID(tid)) in Handle_T()
[all …]
H A DGDBRemoteCommunicationServerLLGS.h96 std::unique_ptr<NativeProcessProtocol> process_up; member