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/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/FreeBSD/
H A DNativeProcessFreeBSD.cpp109 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local
113 status = process_up->SetupTrace(); in Launch()
117 for (const auto &thread : process_up->m_threads) in Launch()
119 process_up->SetState(StateType::eStateStopped, false); in Launch()
121 return std::move(process_up); in Launch()
137 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Attach() local
140 Status status = process_up->Attach(); in Attach()
144 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()
1841 Status error = process_it->second.process_up->Interrupt(); in Handle_vCont()
1857 ResumeProcess(*process_it->second.process_up, x.second); in Handle_vCont()
1935 if (it.second.process_up->IsRunning()) in SendStopReasonForState()
2098 AddProcessThreads(response, *pid_ptr.second.process_up, had_any); in Handle_qfThreadInfo()
2384 new_process_it->second.process_up->GetThreadByID(tid); in Handle_H()
2397 m_current_process = new_process_it->second.process_up.get(); in Handle_H()
[all …]
H A DGDBRemoteCommunicationServerLLGS.h96 std::unique_ptr<NativeProcessProtocol> process_up; member