Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_sqlite/
Dcursor.c46 Py_XSETREF(self->row_cast_map, PyList_New(0)); in pysqlite_cursor_init()
47 if (!self->row_cast_map) { in pysqlite_cursor_init()
88 Py_XDECREF(self->row_cast_map); in pysqlite_cursor_dealloc()
134 Py_XSETREF(self->row_cast_map, PyList_New(0)); in pysqlite_build_row_cast_map()
188 if (PyList_Append(self->row_cast_map, converter) != 0) { in pysqlite_build_row_cast_map()
192 Py_CLEAR(self->row_cast_map); in pysqlite_build_row_cast_map()
256 converter = PyList_GetItem(self->row_cast_map, i); in _pysqlite_fetch_one_row()
Dcursor.h37 PyObject* row_cast_map; member
/external/python/cpython2/Modules/_sqlite/
Dcursor.c85 Py_XSETREF(self->row_cast_map, PyList_New(0)); in pysqlite_cursor_init()
86 if (!self->row_cast_map) { in pysqlite_cursor_init()
127 Py_XDECREF(self->row_cast_map); in pysqlite_cursor_dealloc()
172 Py_XSETREF(self->row_cast_map, PyList_New(0)); in pysqlite_build_row_cast_map()
226 if (PyList_Append(self->row_cast_map, converter) != 0) { in pysqlite_build_row_cast_map()
230 Py_CLEAR(self->row_cast_map); in pysqlite_build_row_cast_map()
322 converter = PyList_GetItem(self->row_cast_map, i); in _pysqlite_fetch_one_row()
Dcursor.h37 PyObject* row_cast_map; member