Searched refs:py_return (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1020 PythonObject py_return = std::move(maybe_py_return.get()); in ExecuteOneLineWithReturn() local 1021 assert(py_return.IsValid()); in ExecuteOneLineWithReturn() 1027 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn() 1033 return PyArg_Parse(py_return.get(), format, (char **)ret_value); in ExecuteOneLineWithReturn() 1037 return PyArg_Parse(py_return.get(), format, (bool *)ret_value); in ExecuteOneLineWithReturn() 1041 return PyArg_Parse(py_return.get(), format, (short *)ret_value); in ExecuteOneLineWithReturn() 1045 return PyArg_Parse(py_return.get(), format, (unsigned short *)ret_value); in ExecuteOneLineWithReturn() 1049 return PyArg_Parse(py_return.get(), format, (int *)ret_value); in ExecuteOneLineWithReturn() 1053 return PyArg_Parse(py_return.get(), format, (unsigned int *)ret_value); in ExecuteOneLineWithReturn() 1057 return PyArg_Parse(py_return.get(), format, (long *)ret_value); in ExecuteOneLineWithReturn() [all …]
|
| H A D | ScriptedPythonInterface.h | 84 PythonObject py_return = std::move(expected_return_object.get()); in Dispatch() local 86 if (!py_return.IsAllocated()) in Dispatch() 100 return ExtractValueFromPythonObject<T>(py_return, error); in Dispatch()
|
| /openbsd-src/gnu/llvm/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 653 PyObject *py_return = 656 if (py_return == Py_True) 659 Py_XDECREF(py_return); 670 PyObject *py_return = 673 if (py_return == Py_True) 676 Py_XDECREF(py_return); 687 PyObject *py_return = 690 if (py_return == Py_None || py_return == nullptr) 695 if (SWIG_ConvertPtr(py_return, (void **)&sbvalue_ptr, 701 ret_val = py_return; [all …]
|