Home
last modified time | relevance | path

Searched refs:pysqlite_Statement (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dstatement.h42 } pysqlite_Statement; typedef
46 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* …
47 void pysqlite_statement_dealloc(pysqlite_Statement* self);
49 int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int a…
50 void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8…
52 int pysqlite_statement_recompile(pysqlite_Statement* self, PyObject* parameters);
53 int pysqlite_statement_finalize(pysqlite_Statement* self);
54 int pysqlite_statement_reset(pysqlite_Statement* self);
55 void pysqlite_statement_mark_dirty(pysqlite_Statement* self);
Dstatement.c54 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* … in pysqlite_statement_create()
106 int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int a… in pysqlite_statement_bind_parameter()
217 void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8… in pysqlite_statement_bind_parameters()
331 int pysqlite_statement_recompile(pysqlite_Statement* self, PyObject* params) in pysqlite_statement_recompile()
372 int pysqlite_statement_finalize(pysqlite_Statement* self) in pysqlite_statement_finalize()
389 int pysqlite_statement_reset(pysqlite_Statement* self) in pysqlite_statement_reset()
408 void pysqlite_statement_mark_dirty(pysqlite_Statement* self) in pysqlite_statement_mark_dirty()
413 void pysqlite_statement_dealloc(pysqlite_Statement* self) in pysqlite_statement_dealloc()
505 sizeof(pysqlite_Statement), /* tp_basicsize */
527 offsetof(pysqlite_Statement, in_weakreflist), /* tp_weaklistoffset */
Dconnection.c221 pysqlite_Statement* statement; in pysqlite_flush_statement_cache()
226 statement = (pysqlite_Statement*)(node->data); in pysqlite_flush_statement_cache()
250 (void)pysqlite_statement_reset((pysqlite_Statement*)statement); in pysqlite_do_all_statements()
252 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement); in pysqlite_do_all_statements()
1193 pysqlite_Statement* statement; in pysqlite_connection_call()
1210 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()
Dcursor.h42 pysqlite_Statement* statement;
Dcursor.c561 … (pysqlite_Statement *)pysqlite_cache_get(self->connection->statement_cache, func_args)); in _pysqlite_query_execute()
570 PyObject_New(pysqlite_Statement, &pysqlite_StatementType)); in _pysqlite_query_execute()
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dstatement.c31 pysqlite_Statement *
84 pysqlite_Statement *self = PyObject_GC_New(pysqlite_Statement, in pysqlite_statement_create()
103 stmt_dealloc(pysqlite_Statement *self) in stmt_dealloc()
118 stmt_traverse(pysqlite_Statement *self, visitproc visit, void *arg) in stmt_traverse()
190 .basicsize = sizeof(pysqlite_Statement),
Dstatement.h38 } pysqlite_Statement; typedef
40 pysqlite_Statement *pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql);
Dcursor.c129 stmt_reset(pysqlite_Statement *self) in stmt_reset()
530 bind_param(pysqlite_state *state, pysqlite_Statement *self, int pos, in bind_param()
634 bind_parameters(pysqlite_state *state, pysqlite_Statement *self, in bind_parameters()
774 stmt_mark_dirty(pysqlite_Statement *self) in stmt_mark_dirty()
847 Py_XSETREF(self->statement, (pysqlite_Statement *)stmt); in _pysqlite_query_execute()
Dcursor.h43 pysqlite_Statement* statement;
Dconnection.c1655 pysqlite_Statement* statement; in pysqlite_connection_call()