Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_sqlite/
Dcursor.c28 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);
710 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self) in pysqlite_cursor_iternext() function
778 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchone()
804 while ((row = pysqlite_cursor_iternext(self))) { in pysqlite_cursor_fetchmany()
831 while ((row = pysqlite_cursor_iternext(self))) { in pysqlite_cursor_fetchall()
934 (iternextfunc)pysqlite_cursor_iternext, /* tp_iternext */
Dcursor.h60 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);
/external/python/cpython2/Modules/_sqlite/
Dcursor.c29 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);
873 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self) in pysqlite_cursor_iternext() function
927 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchone()
958 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchmany()
993 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchall()
1100 (iternextfunc)pysqlite_cursor_iternext, /* tp_iternext */
Dcursor.h65 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);