Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp57 llvm::Expected<HostThread> maybe_thread = in LaunchProcess() local
59 if (!maybe_thread) in LaunchProcess()
61 llvm::toString(maybe_thread.takeError())); in LaunchProcess()
H A DProcessLaunchInfo.cpp182 llvm::Expected<HostThread> maybe_thread = in MonitorProcess() local
184 if (!maybe_thread) in MonitorProcess()
185 LLDB_LOG_ERROR(GetLog(LLDBLog::Host), maybe_thread.takeError(), in MonitorProcess()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DThreadedCommunication.cpp175 auto maybe_thread = ThreadLauncher::LaunchThread( in StartReadThread() local
177 if (maybe_thread) { in StartReadThread()
178 m_read_thread = *maybe_thread; in StartReadThread()
181 *error_ptr = Status(maybe_thread.takeError()); in StartReadThread()
183 LLDB_LOG_ERROR(GetLog(LLDBLog::Host), maybe_thread.takeError(), in StartReadThread()