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.cpp1014 PythonObject py_return = std::move(maybe_py_return.get()); in ExecuteOneLineWithReturn() local
1015 assert(py_return.IsValid()); in ExecuteOneLineWithReturn()
1021 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn()
1027 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn()
1031 return PyArg_Parse(py_return.get(), format, (bool *)ret_value); in ExecuteOneLineWithReturn()
1035 return PyArg_Parse(py_return.get(), format, (short *)ret_value); in ExecuteOneLineWithReturn()
1039 return PyArg_Parse(py_return.get(), format, (unsigned short *)ret_value); in ExecuteOneLineWithReturn()
1043 return PyArg_Parse(py_return.get(), format, (int *)ret_value); in ExecuteOneLineWithReturn()
1047 return PyArg_Parse(py_return.get(), format, (unsigned int *)ret_value); in ExecuteOneLineWithReturn()
1051 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.swig419 PyObject *py_return =
422 if (py_return == Py_True)
425 Py_XDECREF(py_return);
436 PyObject *py_return =
439 if (py_return == Py_True)
442 Py_XDECREF(py_return);
453 PyObject *py_return =
456 if (py_return == Py_None || py_return == nullptr)
461 if (SWIG_ConvertPtr(py_return, (void **)&sbvalue_ptr,
467 ret_val = py_return;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h380 PythonObject py_return = std::move(expected_return_object.get()); in Dispatch() local
392 if (!py_return.IsAllocated()) in Dispatch()
394 return ExtractValueFromPythonObject<T>(py_return, error); in Dispatch()