Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreter.cpp97 std::unique_ptr<ScriptInterpreterLocker>
99 return std::unique_ptr<ScriptInterpreterLocker>( in AcquireInterpreterLock()
100 new ScriptInterpreterLocker()); in AcquireInterpreterLock()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h26 class ScriptInterpreterLocker {
28 ScriptInterpreterLocker() = default;
30 virtual ~ScriptInterpreterLocker() = default;
33 DISALLOW_COPY_AND_ASSIGN(ScriptInterpreterLocker);
458 virtual std::unique_ptr<ScriptInterpreterLocker> AcquireInterpreterLock();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h386 std::unique_ptr<ScriptInterpreterLocker> AcquireInterpreterLock() override;
491 class Locker : public ScriptInterpreterLocker {
H A DScriptInterpreterPython.cpp206 : ScriptInterpreterLocker(), in Locker()
3226 std::unique_ptr<ScriptInterpreterLocker>
3228 std::unique_ptr<ScriptInterpreterLocker> py_lock(new Locker( in AcquireInterpreterLock()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h198 class ScriptInterpreterLocker; variable