Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp208 m_python_interpreter(py_interpreter) { in Locker()
229 m_python_interpreter->SetThreadState(PyThreadState_Get()); in DoAcquireLock()
230 m_python_interpreter->IncrementLockCount(); in DoAcquireLock()
237 if (!m_python_interpreter) in DoInitSession()
239 return m_python_interpreter->EnterSession(on_entry_flags, in, out, err); in DoInitSession()
247 m_python_interpreter->DecrementLockCount(); in DoFreeLock()
252 if (!m_python_interpreter) in DoTearDownSession()
254 m_python_interpreter->LeaveSession(); in DoTearDownSession()
H A DScriptInterpreterPython.h526 ScriptInterpreterPython *m_python_interpreter; variable