Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp94 m_py_obj = nullptr; in Reset()
98 if (!m_py_obj) in AsLongLong()
108 if (!m_py_obj) in AsUnsignedLongLong()
119 if (!m_py_obj) in AsModuloUnsignedLongLong()
136 if (m_py_obj) { in Dump()
185 if (!m_py_obj) in Repr()
194 if (!m_py_obj) in Str()
512 return m_py_obj ? PyObject_IsTrue(m_py_obj) : false; in GetValue()
860 if (PyType_Check(m_py_obj) || PyClass_Check(m_py_obj)) { in GetArgInfo()
1075 assert(m_py_obj); in OwnedPythonFile()
[all …]
H A DPythonDataObjects.h230 m_py_obj = py_obj;
236 Py_XINCREF(m_py_obj);
243 m_py_obj = rhs.m_py_obj;
244 rhs.m_py_obj = nullptr;
252 if (m_py_obj)
264 m_py_obj = nullptr;
270 m_py_obj = std::exchange(other.m_py_obj, nullptr);
308 if (!T::Check(m_py_obj))
338 if (!m_py_obj)
347 if (!m_py_obj)
[all …]