Searched refs:pysqlite_cursor_iternext (Results 1 – 3 of 3) sorted by relevance
29 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);873 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self) in pysqlite_cursor_iternext() function927 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 */
65 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);
1102 pysqlite_cursor_iternext(pysqlite_Cursor *self) in pysqlite_cursor_iternext() function1164 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchone_impl()1194 while ((row = pysqlite_cursor_iternext(self))) { in pysqlite_cursor_fetchmany_impl()1232 while ((row = pysqlite_cursor_iternext(self))) { in pysqlite_cursor_fetchall_impl()1349 {Py_tp_iternext, pysqlite_cursor_iternext},