Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.h41 PyObject* row_factory; member
Dconnection.h82 PyObject* row_factory; member
Dconnection.c92 self->row_factory = Py_None; in pysqlite_connection_init()
287 Py_XDECREF(self->row_factory); in pysqlite_connection_dealloc()
345 if (cursor && self->row_factory != Py_None) { in pysqlite_connection_cursor()
346 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory); in pysqlite_connection_cursor()
347 Py_INCREF(self->row_factory); in pysqlite_connection_cursor()
348 ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory; in pysqlite_connection_cursor()
1613 {"row_factory", T_OBJECT, offsetof(pysqlite_Connection, row_factory)},
Dcursor.c112 self->row_factory = Py_None; in pysqlite_cursor_init()
141 Py_XDECREF(self->row_factory); in pysqlite_cursor_dealloc()
911 if (self->row_factory != Py_None) { in pysqlite_cursor_iternext()
912 next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple); in pysqlite_cursor_iternext()
1073 {"row_factory", T_OBJECT, offsetof(pysqlite_Cursor, row_factory), 0},