Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h367 uint32_t IsExecutingPython() const { return m_lock_count > 0; } in IsExecutingPython()
369 uint32_t IncrementLockCount() { return ++m_lock_count; } in IncrementLockCount()
372 if (m_lock_count > 0) in DecrementLockCount()
373 --m_lock_count; in DecrementLockCount()
374 return m_lock_count; in DecrementLockCount()
410 uint32_t m_lock_count; variable
H A DScriptInterpreterPython.cpp411 m_pty_secondary_is_open(false), m_valid_session(true), m_lock_count(0), in ScriptInterpreterPythonImpl()