Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/
Dcursor.c.h6 pysqlite_cursor_init_impl(pysqlite_Cursor *self,
28 return_value = pysqlite_cursor_init_impl((pysqlite_Cursor *)self, connection); in pysqlite_cursor_init()
44 pysqlite_cursor_execute_impl(pysqlite_Cursor *self, PyObject *sql,
48 pysqlite_cursor_execute(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs) in pysqlite_cursor_execute()
86 pysqlite_cursor_executemany_impl(pysqlite_Cursor *self, PyObject *sql,
90 pysqlite_cursor_executemany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs) in pysqlite_cursor_executemany()
124 pysqlite_cursor_executescript_impl(pysqlite_Cursor *self,
128 pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *arg) in pysqlite_cursor_executescript()
162 pysqlite_cursor_fetchone_impl(pysqlite_Cursor *self);
165 pysqlite_cursor_fetchone(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored)) in pysqlite_cursor_fetchone()
[all …]
Drow.c.h6 pysqlite_row_new_impl(PyTypeObject *type, pysqlite_Cursor *cursor,
13 pysqlite_Cursor *cursor; in pysqlite_row_new()
28 cursor = (pysqlite_Cursor *)PyTuple_GET_ITEM(args, 0); in pysqlite_row_new()
/aosp_15_r20/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()
118 static void pysqlite_cursor_dealloc(pysqlite_Cursor* self) in pysqlite_cursor_dealloc()
156 int pysqlite_build_row_cast_map(pysqlite_Cursor* self) in pysqlite_build_row_cast_map()
291 PyObject* _pysqlite_fetch_one_row(pysqlite_Cursor* self) in _pysqlite_fetch_one_row()
417 static int check_cursor(pysqlite_Cursor* cur) in check_cursor()
437 PyObject* _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* args) in _pysqlite_query_execute()
769 PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_execute()
774 PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args) in pysqlite_cursor_executemany()
779 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()
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()
Drow.c41 pysqlite_Cursor* cursor; in pysqlite_row_new()
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dcursor.c42 check_cursor_locked(pysqlite_Cursor *cur) in check_cursor_locked()
89 pysqlite_cursor_init_impl(pysqlite_Cursor *self, in pysqlite_cursor_init_impl()
147 cursor_traverse(pysqlite_Cursor *self, visitproc visit, void *arg) in cursor_traverse()
160 cursor_clear(pysqlite_Cursor *self) in cursor_clear()
177 cursor_dealloc(pysqlite_Cursor *self) in cursor_dealloc()
214 pysqlite_build_row_cast_map(pysqlite_Cursor* self) in pysqlite_build_row_cast_map()
294 _pysqlite_build_column_name(pysqlite_Cursor *self, const char *colname) in _pysqlite_build_column_name()
323 _pysqlite_fetch_one_row(pysqlite_Cursor* self) in _pysqlite_fetch_one_row()
459 static int check_cursor(pysqlite_Cursor* cur) in check_cursor()
509 get_statement_from_cache(pysqlite_Cursor *self, PyObject *operation) in get_statement_from_cache()
[all …]
Dcursor.h49 } pysqlite_Cursor; typedef
Dconnection.c124 PyObject *_pysqlite_query_execute(pysqlite_Cursor *, int, PyObject *, PyObject *);
409 Py_XSETREF(((pysqlite_Cursor *)cursor)->row_factory, self->row_factory); in pysqlite_connection_cursor_impl()
1697 result = _pysqlite_query_execute((pysqlite_Cursor *)cursor, 0, sql, parameters); in pysqlite_connection_execute_impl()
1730 result = _pysqlite_query_execute((pysqlite_Cursor *)cursor, 1, sql, parameters); in pysqlite_connection_executemany_impl()
Drow.c75 pysqlite_row_new_impl(PyTypeObject *type, pysqlite_Cursor *cursor, in pysqlite_row_new_impl()