Home
last modified time | relevance | path

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

/external/libxml2/python/
Dlibxml.c113 PyObject *py_retval; in libxml_xmlMemoryUsed() local
117 py_retval = libxml_longWrap(ret); in libxml_xmlMemoryUsed()
118 return (py_retval); in libxml_xmlMemoryUsed()
125 PyObject *py_retval; in libxml_xmlDebugMemory() local
182 py_retval = libxml_longWrap(ret); in libxml_xmlDebugMemory()
183 return (py_retval); in libxml_xmlDebugMemory()
503 PyObject *py_retval; in libxml_xmlCreateOutputBuffer() local
519 py_retval = libxml_xmlOutputBufferPtrWrap(buffer); in libxml_xmlCreateOutputBuffer()
520 return(py_retval); in libxml_xmlCreateOutputBuffer()
566 PyObject *py_retval; in libxml_xmlOutputBufferClose() local
[all …]
/external/python/cpython2/Modules/_sqlite/
Dconnection.c655 PyObject* py_retval = NULL; in _pysqlite_func_callback() local
668 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
673 if (py_retval) { in _pysqlite_func_callback()
674 ok = _pysqlite_set_result(context, py_retval) == 0; in _pysqlite_func_callback()
675 Py_DECREF(py_retval); in _pysqlite_func_callback()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c593 PyObject* py_retval = NULL; in _pysqlite_func_callback() local
604 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
609 if (py_retval) { in _pysqlite_func_callback()
610 ok = _pysqlite_set_result(context, py_retval) == 0; in _pysqlite_func_callback()
611 Py_DECREF(py_retval); in _pysqlite_func_callback()