Home
last modified time | relevance | path

Searched refs:DBTxnObject (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dbsddb.h131 struct DBTxnObject; /* Forward declaration */
145 struct DBTxnObject *children_txns;
162 struct DBTxnObject *txn;
186 struct DBTxnObject *txn;
191 typedef struct DBTxnObject { struct
196 struct DBTxnObject *parent_txn; argument
197 struct DBTxnObject **sibling_prev_p; argument
198 struct DBTxnObject *sibling_next; argument
199 struct DBTxnObject *children_txns; argument
204 } DBTxnObject; typedef
[all …]
D_bsddb.c747 *txn = ((DBTxnObject*)txnobj)->txn; in checkTxnObj()
1002 newDBCursorObject(DBC* dbc, DBTxnObject *txn, DBObject* db) in newDBCursorObject()
1171 static DBTxnObject*
1172 newDBTxnObject(DBEnvObject* myenv, DBTxnObject *parent, DB_TXN *txn, int flags) in newDBTxnObject()
1177 DBTxnObject* self = PyObject_New(DBTxnObject, &DBTxn_Type); in newDBTxnObject()
1228 DBTxn_abort_discard_internal(DBTxnObject* self, int discard);
1231 DBTxn_dealloc(DBTxnObject* self) in DBTxn_dealloc()
1804 return (PyObject*) newDBCursorObject(dbc, (DBTxnObject *)txnobj, self); in DB_cursor()
2394 INSERT_IN_DOUBLE_LINKED_LIST_TXN(((DBTxnObject *)txnobj)->children_dbs,self); in DB_open()
2395 self->txn=(DBTxnObject *)txnobj; in DB_open()
[all …]