Home
last modified time | relevance | path

Searched refs:ScriptInterpreterLocker (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h31 class ScriptInterpreterLocker {
33 ScriptInterpreterLocker() = default;
35 virtual ~ScriptInterpreterLocker() = default;
38 ScriptInterpreterLocker(const ScriptInterpreterLocker &) = delete;
39 const ScriptInterpreterLocker &
40 operator=(const ScriptInterpreterLocker &) = delete;
557 virtual std::unique_ptr<ScriptInterpreterLocker> AcquireInterpreterLock();
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DScriptInterpreter.cpp137 std::unique_ptr<ScriptInterpreterLocker>
139 return std::make_unique<ScriptInterpreterLocker>(); in AcquireInterpreterLock()
/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h249 std::unique_ptr<ScriptInterpreterLocker> AcquireInterpreterLock() override;
301 class Locker : public ScriptInterpreterLocker {
H A DScriptInterpreterPython.cpp347 : ScriptInterpreterLocker(), in Locker()
2996 std::unique_ptr<ScriptInterpreterLocker>
2998 std::unique_ptr<ScriptInterpreterLocker> py_lock(new Locker( in AcquireInterpreterLock()
/openbsd/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h183 class ScriptInterpreterLocker; variable