Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp36 m_async_count(0), m_is_running(false), m_should_stop(false) {} in GDBRemoteClientBase()
69 if (m_async_count == 0) { in SendContinuePacketAndWaitForResponse()
270 if (m_async_count == 0) in ShouldStop()
334 m_comm.m_cv.wait(lock, [this] { return m_comm.m_async_count == 0; }); in lock()
372 ++m_comm.m_async_count; in SyncWithContinueThread()
374 if (m_comm.m_async_count == 1) { in SyncWithContinueThread()
381 --m_comm.m_async_count; in SyncWithContinueThread()
401 --m_comm.m_async_count; in ~Lock()
H A DGDBRemoteClientBase.h138 uint32_t m_async_count; variable