Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h36 class StructuredPythonObject : public StructuredData::Generic {
38 StructuredPythonObject() : StructuredData::Generic() {} in StructuredPythonObject() function
40 StructuredPythonObject(void *obj) : StructuredData::Generic(obj) { in StructuredPythonObject() function
44 ~StructuredPythonObject() override { in ~StructuredPythonObject()
55 DISALLOW_COPY_AND_ASSIGN(StructuredPythonObject);
H A DScriptInterpreterPython.cpp1524 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateFrameRecognizer()
1583 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in OSPlugin_CreatePluginObject()
1869 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); in CreateScriptedThreadPlan()
1975 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateScriptedBreakpointResolver()
2093 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); in CreateSyntheticScriptedProvider()
2116 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateScriptCommandObject()
2224 callee_wrapper_sp.reset(new StructuredPythonObject(new_callee)); in GetScriptedSummary()
2883 module_sp->reset(new StructuredPythonObject(module_pyobj)); in LoadScriptingModule()
H A DPythonDataObjects.cpp33 void StructuredPythonObject::Dump(Stream &s, bool pretty_print) const { in Dump()
197 return StructuredData::ObjectSP(new StructuredPythonObject(m_py_obj)); in CreateStructuredObject()