Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.c91 self->next_row = NULL; in pysqlite_cursor_init()
142 Py_XDECREF(self->next_row); in pysqlite_cursor_dealloc()
478 Py_XDECREF(self->next_row); in _pysqlite_query_execute()
479 self->next_row = NULL; in _pysqlite_query_execute()
723 self->next_row = _pysqlite_fetch_one_row(self); in _pysqlite_query_execute()
887 PyObject* next_row; in pysqlite_cursor_iternext() local
899 if (!self->next_row) { in pysqlite_cursor_iternext()
908 next_row_tuple = self->next_row; in pysqlite_cursor_iternext()
909 self->next_row = NULL; in pysqlite_cursor_iternext()
912 next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple); in pysqlite_cursor_iternext()
[all …]
Dcursor.h48 PyObject* next_row; member