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()
271 if (m_async_count == 0) in ShouldStop()
335 m_comm.m_cv.wait(lock, [this] { return m_comm.m_async_count == 0; }); in lock()
373 ++m_comm.m_async_count; in SyncWithContinueThread()
375 if (m_comm.m_async_count == 1) { in SyncWithContinueThread()
382 --m_comm.m_async_count; in SyncWithContinueThread()
402 --m_comm.m_async_count; in ~Lock()
H A DGDBRemoteClientBase.h145 uint32_t m_async_count; variable