Home
last modified time | relevance | path

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

/external/libxml2/python/
Dlibxml.c112 PyObject *py_retval; in libxml_xmlMemoryUsed() local
116 py_retval = libxml_longWrap(ret); in libxml_xmlMemoryUsed()
117 return (py_retval); in libxml_xmlMemoryUsed()
124 PyObject *py_retval; in libxml_xmlDebugMemory() local
181 py_retval = libxml_longWrap(ret); in libxml_xmlDebugMemory()
182 return (py_retval); in libxml_xmlDebugMemory()
502 PyObject *py_retval; in libxml_xmlCreateOutputBuffer() local
518 py_retval = libxml_xmlOutputBufferPtrWrap(buffer); in libxml_xmlCreateOutputBuffer()
519 return(py_retval); in libxml_xmlCreateOutputBuffer()
565 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()