Home
last modified time | relevance | path

Searched refs:m_gil_state (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonTestSuite.h20 PyGILState_STATE m_gil_state;
DPythonTestSuite.cpp40 m_gil_state = PyGILState_Ensure(); in SetUp()
44 PyGILState_Release(m_gil_state); in TearDown()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp238 : m_gil_state(PyGILState_UNLOCKED), m_was_already_initialized(false) { in InitializePythonRAII()
276 m_gil_state == PyGILState_UNLOCKED ? "un" : ""); in ~InitializePythonRAII()
277 PyGILState_Release(m_gil_state); in ~InitializePythonRAII()
347 m_gil_state = PyGILState_Ensure(); in InitializeThreadsPrivate()
349 m_gil_state == PyGILState_UNLOCKED ? "un" : ""); in InitializeThreadsPrivate()
358 PyGILState_STATE m_gil_state; member