Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPythonImpl.h365 uint32_t IsExecutingPython() const { return m_lock_count > 0; } in IsExecutingPython()
367 uint32_t IncrementLockCount() { return ++m_lock_count; } in IncrementLockCount()
370 if (m_lock_count > 0) in DecrementLockCount()
371 --m_lock_count; in DecrementLockCount()
372 return m_lock_count; in DecrementLockCount()
408 uint32_t m_lock_count; variable
DScriptInterpreterPython.cpp505 m_pty_secondary_is_open(false), m_valid_session(true), m_lock_count(0), in ScriptInterpreterPythonImpl()