Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPythonImpl.h368 uint32_t IsExecutingPython() const { return m_lock_count > 0; } in IsExecutingPython()
370 uint32_t IncrementLockCount() { return ++m_lock_count; } in IncrementLockCount()
373 if (m_lock_count > 0) in DecrementLockCount()
374 --m_lock_count; in DecrementLockCount()
375 return m_lock_count; in DecrementLockCount()
411 uint32_t m_lock_count; variable
DScriptInterpreterPython.cpp532 m_pty_secondary_is_open(false), m_valid_session(true), m_lock_count(0), in ScriptInterpreterPythonImpl()