Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.h74 class StructuredPythonObject : public StructuredData::Generic {
76 StructuredPythonObject() : StructuredData::Generic() {} in StructuredPythonObject() function
78 StructuredPythonObject(void *obj) : StructuredData::Generic(obj) { in StructuredPythonObject() function
82 ~StructuredPythonObject() override { in ~StructuredPythonObject()
93 StructuredPythonObject(const StructuredPythonObject &) = delete;
94 const StructuredPythonObject &
95 operator=(const StructuredPythonObject &) = delete;
DScriptInterpreterPython.cpp1504 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateFrameRecognizer()
1568 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in OSPlugin_CreatePluginObject()
1855 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); in CreateScriptedThreadPlan()
1957 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateScriptedBreakpointResolver()
2032 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateScriptedStopHook()
2127 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); in CreateSyntheticScriptedProvider()
2149 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); in CreateScriptCommandObject()
2261 callee_wrapper_sp = std::make_shared<StructuredPythonObject>(new_callee); in GetScriptedSummary()
2897 *module_sp = std::make_shared<StructuredPythonObject>(module_pyobj); in LoadScriptingModule()
DPythonDataObjects.cpp121 void StructuredPythonObject::Serialize(llvm::json::OStream &s) const { in Serialize()
282 return StructuredData::ObjectSP(new StructuredPythonObject(m_py_obj)); in CreateStructuredObject()