Home
last modified time | relevance | path

Searched refs:pysqlite_Cursor (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.h51 } pysqlite_Cursor; typedef
61 PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args);
62 PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args);
63 PyObject* pysqlite_cursor_getiter(pysqlite_Cursor *self);
64 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);
65 PyObject* pysqlite_cursor_fetchone(pysqlite_Cursor* self, PyObject* args);
66 PyObject* pysqlite_cursor_fetchmany(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs);
67 PyObject* pysqlite_cursor_fetchall(pysqlite_Cursor* self, PyObject* args);
69 PyObject* pysqlite_cursor_close(pysqlite_Cursor* self, PyObject* args);
Dcursor.c37 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);
79 static int pysqlite_cursor_init(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs) in pysqlite_cursor_init()
127 static void pysqlite_cursor_dealloc(pysqlite_Cursor* self) in pysqlite_cursor_dealloc()
167 int pysqlite_build_row_cast_map(pysqlite_Cursor* self) in pysqlite_build_row_cast_map()
303 PyObject* _pysqlite_fetch_one_row(pysqlite_Cursor* self) in _pysqlite_fetch_one_row()
434 static int check_cursor(pysqlite_Cursor* cur) in check_cursor()
449 PyObject* _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* args) in _pysqlite_query_execute()
780 PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_execute()
785 PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_executemany()
790 PyObject* pysqlite_cursor_executescript(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_executescript()
[all …]
Dmicroprotocols.h51 pysqlite_adapt(pysqlite_Cursor* self, PyObject *args);
Dmicroprotocols.c135 pysqlite_adapt(pysqlite_Cursor *self, PyObject *args) in pysqlite_adapt()
Drow.c39 pysqlite_Cursor* cursor; in pysqlite_row_init()
Dconnection.c240 pysqlite_Cursor* cursor; in pysqlite_do_all_statements()
257 cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref); in pysqlite_do_all_statements()
346 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory); in pysqlite_connection_cursor()
348 ((pysqlite_Cursor*)cursor)->row_factory = self->row_factory; in pysqlite_connection_cursor()