Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1029 PythonObject py_return = std::move(maybe_py_return.get()); in ExecuteOneLineWithReturn() local
1030 assert(py_return.IsValid()); in ExecuteOneLineWithReturn()
1078 return PyArg_Parse(py_return.get(), format, in ExecuteOneLineWithReturn()
1094 *((PyObject **)ret_value) = py_return.release(); in ExecuteOneLineWithReturn()
1500 PythonObject py_return(PyRefType::Owned, in GetRecognizedArguments() local
1509 if (py_return.get()) { in GetRecognizedArguments()
2311 if (!py_return.IsAllocated() || !PythonString::Check(py_return.get())) in GetSyntheticTypeName()
2828 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { in GetShortHelpForCommandObject()
2873 long long py_return = unwrapOrSetPythonException( in GetFlagsForCommandObject() local
2881 result = py_return; in GetFlagsForCommandObject()
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig642 PyObject *py_return =
645 if (py_return == Py_True)
648 Py_XDECREF(py_return);
659 PyObject *py_return =
662 if (py_return == Py_True)
665 Py_XDECREF(py_return);
676 PyObject *py_return =
679 if (py_return == Py_None || py_return == nullptr)
684 if (SWIG_ConvertPtr(py_return, (void **)&sbvalue_ptr,
690 ret_val = py_return;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h274 PythonObject py_return = std::move(expected_return_object.get()); in Dispatch() local
286 if (!py_return.IsAllocated()) in Dispatch()
288 return ExtractValueFromPythonObject<T>(py_return, error); in Dispatch()