Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp288 auto process_or = m_process_manager.Launch(m_process_launch_info, *this); in LaunchProcess() local
289 if (!process_or) in LaunchProcess()
290 return Status(process_or.takeError()); in LaunchProcess()
291 m_continue_process = m_current_process = process_or->get(); in LaunchProcess()
294 DebuggedProcess{std::move(*process_or), DebuggedProcess::Flag{}}); in LaunchProcess()
357 auto process_or = m_process_manager.Attach(pid, *this); in AttachToProcess() local
358 if (!process_or) { in AttachToProcess()
359 Status status(process_or.takeError()); in AttachToProcess()
364 m_continue_process = m_current_process = process_or->get(); in AttachToProcess()
367 DebuggedProcess{std::move(*process_or), DebuggedProcess::Flag{}}); in AttachToProcess()