Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h372 return m_lock_count > 0; in IsExecutingPython()
377 return ++m_lock_count; in IncrementLockCount()
382 if (m_lock_count > 0) in DecrementLockCount()
383 --m_lock_count; in DecrementLockCount()
384 return m_lock_count; in DecrementLockCount()
420 uint32_t m_lock_count; variable
H A DScriptInterpreterPython.cpp428 m_pty_secondary_is_open(false), m_valid_session(true), m_lock_count(0), in ScriptInterpreterPythonImpl()