Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.c94 self->row_cast_map = PyList_New(0); in pysqlite_cursor_init()
95 if (!self->row_cast_map) { in pysqlite_cursor_init()
138 Py_XDECREF(self->row_cast_map); in pysqlite_cursor_dealloc()
183 Py_XDECREF(self->row_cast_map); in pysqlite_build_row_cast_map()
184 self->row_cast_map = PyList_New(0); in pysqlite_build_row_cast_map()
238 if (PyList_Append(self->row_cast_map, converter) != 0) { in pysqlite_build_row_cast_map()
242 Py_XDECREF(self->row_cast_map); in pysqlite_build_row_cast_map()
243 self->row_cast_map = NULL; in pysqlite_build_row_cast_map()
335 converter = PyList_GetItem(self->row_cast_map, i); in _pysqlite_fetch_one_row()
Dcursor.h37 PyObject* row_cast_map; member