Searched refs:process_or (Results 1 – 1 of 1) sorted by relevance
288 auto process_or = m_process_manager.Launch(m_process_launch_info, *this); in LaunchProcess() local289 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() local358 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()