Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp263 auto process_or = in LaunchProcess() local
265 if (!process_or) in LaunchProcess()
266 return Status(process_or.takeError()); in LaunchProcess()
267 m_continue_process = m_current_process = process_or->get(); in LaunchProcess()
268 m_debugged_processes[m_current_process->GetID()] = std::move(*process_or); in LaunchProcess()
331 auto process_or = m_process_factory.Attach(pid, *this, m_mainloop); in AttachToProcess() local
332 if (!process_or) { in AttachToProcess()
333 Status status(process_or.takeError()); in AttachToProcess()
338 m_continue_process = m_current_process = process_or->get(); in AttachToProcess()
339 m_debugged_processes[m_current_process->GetID()] = std::move(*process_or); in AttachToProcess()