Home
last modified time | relevance | path

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

/aosp_15_r20/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);
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dcursor.c1102 pysqlite_cursor_iternext(pysqlite_Cursor *self) in pysqlite_cursor_iternext() function
1164 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},