Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp92 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local
96 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() local
124 Status status = process_up->Attach(); in Attach()
128 return std::move(process_up); in Attach()
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp97 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Launch() local
101 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() local
129 Status status = process_up->Attach(); in Attach()
133 return std::move(process_up); in Attach()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.cpp611 auto process_up = std::unique_ptr<NativeProcessWindows>( in Launch() local
615 return std::move(process_up); in Launch()
624 auto process_up = std::unique_ptr<NativeProcessWindows>( in Attach() local
628 return std::move(process_up); in Attach()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1441 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 …]
H A DGDBRemoteCommunicationServerLLGS.h95 std::unique_ptr<NativeProcessProtocol> process_up; member