Home
last modified time | relevance | path

Searched refs:pysqlite_Connection (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.h118 } pysqlite_Connection; typedef
123 void pysqlite_connection_dealloc(pysqlite_Connection* self);
124 PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs);
125 PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args);
126 PyObject* _pysqlite_connection_begin(pysqlite_Connection* self);
127 PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args);
128 PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args);
130 int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs);
132 int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor);
133 int pysqlite_check_thread(pysqlite_Connection* self);
[all …]
Dconnection.c44 static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_l…
45 static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self);
60 int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) in pysqlite_connection_init()
129 self->db = ((pysqlite_Connection*)database)->db; in pysqlite_connection_init()
215 void pysqlite_flush_statement_cache(pysqlite_Connection* self) in pysqlite_flush_statement_cache()
235 void pysqlite_do_all_statements(pysqlite_Connection* self, int action, int reset_cursors) in pysqlite_do_all_statements()
265 void pysqlite_connection_dealloc(pysqlite_Connection* self) in pysqlite_connection_dealloc()
301 int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor) in pysqlite_connection_register_cursor()
322 PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) in pysqlite_connection_cursor()
354 PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args) in pysqlite_connection_close()
[all …]
Dcursor.h35 pysqlite_Connection* connection;
68 PyObject* pysqlite_noop(pysqlite_Connection* self, PyObject* args);
Dutil.h31 int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection);
Dstatement.h46 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* …
Dutil.c27 int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection) in pysqlite_step()
Dstatement.c53 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* … in pysqlite_statement_create()
Dcursor.c81 pysqlite_Connection* connection; in pysqlite_cursor_init()
1020 PyObject* pysqlite_noop(pysqlite_Connection* self, PyObject* args) in pysqlite_noop()