Home
last modified time | relevance | path

Searched refs:m_py_obj (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp92 m_py_obj = nullptr; in Reset()
96 if (!m_py_obj) in AsLongLong()
106 if (!m_py_obj) in AsUnsignedLongLong()
117 if (!m_py_obj) in AsModuloUnsignedLongLong()
133 if (m_py_obj) { in Dump()
182 if (!m_py_obj) in Repr()
191 if (!m_py_obj) in Str()
488 return m_py_obj ? PyObject_IsTrue(m_py_obj) : false; in GetValue()
822 if (PyType_Check(m_py_obj) || PyClass_Check(m_py_obj)) { in GetArgInfo()
1037 assert(m_py_obj); in OwnedPythonFile()
[all …]
H A DPythonDataObjects.h217 m_py_obj = py_obj;
223 Py_XINCREF(m_py_obj);
230 m_py_obj = rhs.m_py_obj;
231 rhs.m_py_obj = nullptr;
239 if (m_py_obj)
240 _PyObject_Dump(m_py_obj);
251 m_py_obj = nullptr;
257 m_py_obj = std::exchange(other.m_py_obj, nullptr);
295 if (!T::Check(m_py_obj))
325 if (!m_py_obj)
[all …]