Home
last modified time | relevance | path

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

/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 */
Dcursor.h42 pysqlite_Statement* statement;
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.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()
/external/python/cpython3/Modules/_sqlite/
Dstatement.h43 } pysqlite_Statement; typedef
47 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* …
48 void pysqlite_statement_dealloc(pysqlite_Statement* self);
50 int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter);
51 void pysqlite_statement_bind_parameters(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.c51 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* … in pysqlite_statement_create()
114 int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter) in pysqlite_statement_bind_parameter()
206 void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters) in pysqlite_statement_bind_parameters()
322 int pysqlite_statement_finalize(pysqlite_Statement* self) in pysqlite_statement_finalize()
339 int pysqlite_statement_reset(pysqlite_Statement* self) in pysqlite_statement_reset()
358 void pysqlite_statement_mark_dirty(pysqlite_Statement* self) in pysqlite_statement_mark_dirty()
363 void pysqlite_statement_dealloc(pysqlite_Statement* self) in pysqlite_statement_dealloc()
455 sizeof(pysqlite_Statement), /* tp_basicsize */
477 offsetof(pysqlite_Statement, in_weakreflist), /* tp_weaklistoffset */
Dcursor.h42 pysqlite_Statement* statement;
Dconnection.c227 (void)pysqlite_statement_reset((pysqlite_Statement*)statement); in pysqlite_do_all_statements()
229 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement); in pysqlite_do_all_statements()
1192 pysqlite_Statement* statement; in pysqlite_connection_call()
1208 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()
Dcursor.c490 … (pysqlite_Statement *)pysqlite_cache_get(self->connection->statement_cache, func_args)); in _pysqlite_query_execute()
499 PyObject_New(pysqlite_Statement, &pysqlite_StatementType)); in _pysqlite_query_execute()