HomeSort by relevance Sort by last modified time
    Searched refs:row_cast_map (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.h 37 PyObject* row_cast_map; member in struct:__anon4707
cursor.c 94 self->row_cast_map = PyList_New(0);
95 if (!self->row_cast_map) {
138 Py_XDECREF(self->row_cast_map);
183 Py_XDECREF(self->row_cast_map);
184 self->row_cast_map = PyList_New(0);
238 if (PyList_Append(self->row_cast_map, converter) != 0) {
242 Py_XDECREF(self->row_cast_map);
243 self->row_cast_map = NULL;
335 converter = PyList_GetItem(self->row_cast_map, i);
685 PyErr_SetString(pysqlite_OperationalError, "Error while building row_cast_map");
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.h 37 PyObject* row_cast_map; member in struct:__anon32733
cursor.c 86 self->row_cast_map = PyList_New(0);
87 if (!self->row_cast_map) {
128 Py_XDECREF(self->row_cast_map);
173 Py_XSETREF(self->row_cast_map, PyList_New(0));
227 if (PyList_Append(self->row_cast_map, converter) != 0) {
231 Py_CLEAR(self->row_cast_map);
323 converter = PyList_GetItem(self->row_cast_map, i);
672 PyErr_SetString(pysqlite_OperationalError, "Error while building row_cast_map");
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cursor.h 37 PyObject* row_cast_map; member in struct:__anon33355
cursor.c 47 self->row_cast_map = PyList_New(0);
48 if (!self->row_cast_map) {
89 Py_XDECREF(self->row_cast_map);
135 Py_XSETREF(self->row_cast_map, PyList_New(0));
189 if (PyList_Append(self->row_cast_map, converter) != 0) {
193 Py_CLEAR(self->row_cast_map);
257 converter = PyList_GetItem(self->row_cast_map, i);
581 PyErr_SetString(pysqlite_OperationalError, "Error while building row_cast_map");

Completed in 335 milliseconds