Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1034 PythonObject py_return = std::move(maybe_py_return.get()); in ExecuteOneLineWithReturn() local
1035 assert(py_return.IsValid()); in ExecuteOneLineWithReturn()
1041 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn()
1047 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn()
1051 return PyArg_Parse(py_return.get(), format, (bool *)ret_value); in ExecuteOneLineWithReturn()
1055 return PyArg_Parse(py_return.get(), format, (short *)ret_value); in ExecuteOneLineWithReturn()
1059 return PyArg_Parse(py_return.get(), format, (unsigned short *)ret_value); in ExecuteOneLineWithReturn()
1063 return PyArg_Parse(py_return.get(), format, (int *)ret_value); in ExecuteOneLineWithReturn()
1067 return PyArg_Parse(py_return.get(), format, (unsigned int *)ret_value); in ExecuteOneLineWithReturn()
1071 return PyArg_Parse(py_return.get(), format, (long *)ret_value); in ExecuteOneLineWithReturn()
[all …]
H A DScriptedPythonInterface.h
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig515 PyObject *py_return =
518 if (py_return == Py_True)
521 Py_XDECREF(py_return);
532 PyObject *py_return =
535 if (py_return == Py_True)
538 Py_XDECREF(py_return);
549 PyObject *py_return =
552 if (py_return == Py_None || py_return == nullptr)
557 if (SWIG_ConvertPtr(py_return, (void **)&sbvalue_ptr,
563 ret_val = py_return;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h277 PythonObject py_return = std::move(expected_return_object.get()); in Dispatch() local
289 if (!py_return.IsAllocated()) in Dispatch()
291 return ExtractValueFromPythonObject<T>(py_return, error); in Dispatch()