Home
last modified time | relevance | path

Searched refs:PyRefType (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp96 return PythonString(PyRefType::Owned, repr); in Repr()
105 return PythonString(PyRefType::Owned, str); in Str()
167 return PythonObject(PyRefType::Owned, in GetAttributeValue()
427 PythonObject::Reset(PyRefType::Owned, str); in SetString()
535 Reset(PyRefType::Owned, PyList_New(0)); in PythonList()
616 Reset(PyRefType::Owned, PyTuple_New(0)); in PythonTuple()
712 Reset(PyRefType::Owned, PyDict_New()); in PythonDictionary()
761 return PythonObject(PyRefType::Borrowed, in GetItemForKey()
922 return PythonObject(PyRefType::Owned, in operator ()()
929 return PythonObject(PyRefType::Owned, in operator ()()
[all …]
H A DPythonDataObjects.h73 enum class PyRefType { enum
109 Reset(PyRefType::Borrowed, rhs.m_py_obj); in Reset()
153 Reset(PyRefType::Borrowed, other.get());
191 return T(PyRefType::Borrowed, m_py_obj); in AsType()
205 PythonBytes(PyRefType type, PyObject *o);
257 PythonString(PyRefType type, PyObject *o);
282 PythonInteger(PyRefType type, PyObject *o);
306 PythonList(PyRefType type, PyObject *o);
334 PythonTuple(PyRefType type, PyObject *o);
386 PythonModule(PyRefType type, PyObject *o);
[all …]
H A DScriptInterpreterPython.cpp1067 PyRefType::Owned, in ExecuteOneLineWithReturn()
1221 PyRefType::Owned, in ExecuteMultipleLines()
1247 PyRefType::Owned, in ExecuteMultipleLines()
1543 PyRefType::Owned, in GetRecognizedArguments()
1626 PyRefType::Owned, in OSPlugin_RegisterInfo()
1681 PyRefType::Owned, in OSPlugin_ThreadsInfo()
1766 PyRefType::Owned, in OSPlugin_RegisterContextData()
2559 PyRefType::Owned, in GetSyntheticTypeName()
3096 PyRefType::Owned, in GetShortHelpForCommandObject()
3151 PyRefType::Owned, in GetFlagsForCommandObject()
[all …]
H A DPythonExceptionState.cpp49 m_type.Reset(PyRefType::Owned, py_type); in Acquire()
50 m_value.Reset(PyRefType::Owned, py_value); in Acquire()
51 m_traceback.Reset(PyRefType::Owned, py_traceback); in Acquire()