Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationReplayServer.cpp214 llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( in StartAsyncThread() local
217 if (!async_thread) { in StartAsyncThread()
219 async_thread.takeError(), in StartAsyncThread()
223 m_async_thread = *async_thread; in StartAsyncThread()
DProcessGDBRemote.cpp3593 llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( in StartAsyncThread() local
3595 if (!async_thread) { in StartAsyncThread()
3597 async_thread.takeError(), in StartAsyncThread()
3601 m_async_thread = *async_thread; in StartAsyncThread()
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp744 llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( in StartAsyncThread() local
746 if (!async_thread) { in StartAsyncThread()
749 llvm::toString(async_thread.takeError())); in StartAsyncThread()
752 m_async_thread = *async_thread; in StartAsyncThread()