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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp56 llvm::Expected<HostThread> maybe_thread = local
59 if (!maybe_thread)
61 llvm::toString(maybe_thread.takeError()));
H A DProcessLaunchInfo.cpp191 llvm::Expected<HostThread> maybe_thread = local
194 if (!maybe_thread)
197 llvm::toString(maybe_thread.takeError()));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp206 auto maybe_thread = ThreadLauncher::LaunchThread( local
208 if (maybe_thread) {
209 m_read_thread = *maybe_thread;
212 *error_ptr = Status(maybe_thread.takeError());
216 llvm::toString(maybe_thread.takeError()));

Completed in 76 milliseconds