Home
last modified time | relevance | path

Searched refs:ScriptObject (Results 1 – 6 of 6) sorted by relevance

/llvm-project/lldb/source/API/
H A DSBScriptObject.cpp21 : m_opaque_up(std::make_unique<lldb_private::ScriptObject>(ptr, lang)) { in SBScriptObject()
26 : m_opaque_up(new ScriptObject(nullptr, eScriptLanguageNone)) { in SBScriptObject()
71 ScriptObject &SBScriptObject::ref() { in ref()
73 m_opaque_up = std::make_unique<ScriptObject>(nullptr, eScriptLanguageNone); in ref()
77 const ScriptObject &SBScriptObject::ref() const { in ref()
84 ScriptObject *SBScriptObject::get() { return m_opaque_up.get(); } in get()
/llvm-project/lldb/include/lldb/API/
H A DSBScriptObject.h15 class ScriptObject; variable
43 lldb_private::ScriptObject *get();
45 lldb_private::ScriptObject &ref();
47 const lldb_private::ScriptObject &ref() const;
50 std::unique_ptr<lldb_private::ScriptObject> m_opaque_up;
/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptObject.h15 class ScriptObject {
17 ScriptObject(lldb::ScriptObjectPtr ptr, lldb::ScriptLanguage lang) in ScriptObject() function
H A DScriptInterpreter.h31 #include "lldb/Interpreter/ScriptObject.h"
566 CreateStructuredDataFromScriptObject(ScriptObject obj) { in CreateOperatingSystemInterface()
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h81 CreateStructuredDataFromScriptObject(ScriptObject obj) override;
H A DScriptInterpreterPython.cpp1564 ScriptObject obj) { in CreateScriptedBreakpointResolver()