Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_sqlite/
Dcursor.h52 } pysqlite_Cursor; typedef
62 PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args);
63 PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args);
64 PyObject* pysqlite_cursor_getiter(pysqlite_Cursor *self);
65 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);
66 PyObject* pysqlite_cursor_fetchone(pysqlite_Cursor* self, PyObject* args);
67 PyObject* pysqlite_cursor_fetchmany(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs);
68 PyObject* pysqlite_cursor_fetchall(pysqlite_Cursor* self, PyObject* args);
70 PyObject* pysqlite_cursor_close(pysqlite_Cursor* self, PyObject* args);
Dcursor.c29 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);
71 static int pysqlite_cursor_init(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs) in pysqlite_cursor_init()
119 static void pysqlite_cursor_dealloc(pysqlite_Cursor* self) in pysqlite_cursor_dealloc()
157 int pysqlite_build_row_cast_map(pysqlite_Cursor* self) in pysqlite_build_row_cast_map()
292 PyObject* _pysqlite_fetch_one_row(pysqlite_Cursor* self) in _pysqlite_fetch_one_row()
418 static int check_cursor(pysqlite_Cursor* cur) in check_cursor()
438 PyObject* _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* args) in _pysqlite_query_execute()
770 PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_execute()
775 PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_executemany()
780 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.c41 pysqlite_Cursor* cursor; in pysqlite_row_new()
Dconnection.c243 pysqlite_Cursor* cursor; in pysqlite_do_all_statements()
260 cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref); in pysqlite_do_all_statements()
359 Py_XSETREF(((pysqlite_Cursor *)cursor)->row_factory, self->row_factory); in pysqlite_connection_cursor()