Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.cpp114 PythonObject py_return(PyRefType::Owned, in GetStatusFromMethod() local
125 if (PyObject *py_ret_ptr = py_return.get()) { in GetStatusFromMethod()
178 PythonObject py_return(PyRefType::Owned, in GetGenericInteger() local
188 if (!py_return.get()) in GetGenericInteger()
191 llvm::Expected<unsigned long long> size = py_return.AsUnsignedLongLong(); in GetGenericInteger()
262 PythonObject py_return(PyRefType::Owned, in ReadMemoryAtAddress() local
273 if (PyObject *py_ret_ptr = py_return.get()) { in ReadMemoryAtAddress()
H A DScriptInterpreterPython.cpp1585 if (py_return.get()) { in GetRecognizedArguments()
1661 PythonObject py_return( in OSPlugin_RegisterInfo() local
1670 if (py_return.get()) { in OSPlugin_RegisterInfo()
1716 PythonObject py_return( in OSPlugin_ThreadsInfo() local
1726 if (py_return.get()) { in OSPlugin_ThreadsInfo()
1783 if (py_return.get()) { in OSPlugin_RegisterContextData()
1842 if (py_return.get()) { in OSPlugin_CreateThread()
2609 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { in GetSyntheticTypeName()
3154 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { in GetShortHelpForCommandObject()
3207 result = py_return; in GetFlagsForCommandObject()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig813 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name);
815 if (py_return == Py_True)
818 Py_XDECREF(py_return);
833 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name, Py_True);
835 if (py_return == Py_True)
838 Py_XDECREF(py_return);
853 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name, Py_None);
855 if (py_return == Py_None || py_return == nullptr)
860 if (SWIG_ConvertPtr(py_return, (void**)&sbvalue_ptr, SWIGTYPE_p_lldb__SBValue, 0) == -1)
865 ret_val = py_return;
[all …]