Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_sqlite/
Dcursor.c86 self->row_cast_map = PyList_New(0); in pysqlite_cursor_init()
87 if (!self->row_cast_map) { in pysqlite_cursor_init()
128 Py_XDECREF(self->row_cast_map); in pysqlite_cursor_dealloc()
173 Py_XSETREF(self->row_cast_map, PyList_New(0)); in pysqlite_build_row_cast_map()
227 if (PyList_Append(self->row_cast_map, converter) != 0) { in pysqlite_build_row_cast_map()
231 Py_CLEAR(self->row_cast_map); in pysqlite_build_row_cast_map()
323 converter = PyList_GetItem(self->row_cast_map, i); in _pysqlite_fetch_one_row()
Dcursor.h37 PyObject* row_cast_map; member