Searched refs:pysqlite_Statement (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/ |
D | statement.h | 42 } 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);
|
D | statement.c | 53 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* … in pysqlite_statement_create() 101 int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter, int a… in pysqlite_statement_bind_parameter() 210 void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters, int allow_8… in pysqlite_statement_bind_parameters() 324 int pysqlite_statement_recompile(pysqlite_Statement* self, PyObject* params) in pysqlite_statement_recompile() 365 int pysqlite_statement_finalize(pysqlite_Statement* self) in pysqlite_statement_finalize() 382 int pysqlite_statement_reset(pysqlite_Statement* self) in pysqlite_statement_reset() 401 void pysqlite_statement_mark_dirty(pysqlite_Statement* self) in pysqlite_statement_mark_dirty() 406 void pysqlite_statement_dealloc(pysqlite_Statement* self) in pysqlite_statement_dealloc() 500 sizeof(pysqlite_Statement), /* tp_basicsize */ 522 offsetof(pysqlite_Statement, in_weakreflist), /* tp_weaklistoffset */
|
D | cursor.h | 42 pysqlite_Statement* statement;
|
D | connection.c | 218 pysqlite_Statement* statement; in pysqlite_flush_statement_cache() 223 statement = (pysqlite_Statement*)(node->data); in pysqlite_flush_statement_cache() 247 (void)pysqlite_statement_reset((pysqlite_Statement*)statement); in pysqlite_do_all_statements() 249 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement); in pysqlite_do_all_statements() 1178 pysqlite_Statement* statement; in pysqlite_connection_call() 1192 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()
|
D | cursor.c | 575 …self->statement = (pysqlite_Statement*)pysqlite_cache_get(self->connection->statement_cache, func_… in _pysqlite_query_execute() 584 self->statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in _pysqlite_query_execute()
|