Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h374 return m_lock_count > 0; in IsExecutingPython()
379 return ++m_lock_count; in IncrementLockCount()
384 if (m_lock_count > 0) in DecrementLockCount()
385 --m_lock_count; in DecrementLockCount()
386 return m_lock_count; in DecrementLockCount()
422 uint32_t m_lock_count; variable
H A DScriptInterpreterPython.cpp434 m_pty_secondary_is_open(false), m_valid_session(true), m_lock_count(0), in ScriptInterpreterPythonImpl()