Searched refs:DBTxnObject (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | bsddb.h | 131 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; argument [all …]
|
D | _bsddb.c | 747 *txn = ((DBTxnObject*)txnobj)->txn; in checkTxnObj() 1000 newDBCursorObject(DBC* dbc, DBTxnObject *txn, DBObject* db) in newDBCursorObject() 1169 static DBTxnObject* 1170 newDBTxnObject(DBEnvObject* myenv, DBTxnObject *parent, DB_TXN *txn, int flags) in newDBTxnObject() 1175 DBTxnObject* self = PyObject_New(DBTxnObject, &DBTxn_Type); in newDBTxnObject() 1226 DBTxn_abort_discard_internal(DBTxnObject* self, int discard); 1229 DBTxn_dealloc(DBTxnObject* self) in DBTxn_dealloc() 1787 return (PyObject*) newDBCursorObject(dbc, (DBTxnObject *)txnobj, self); in DB_cursor() 2370 INSERT_IN_DOUBLE_LINKED_LIST_TXN(((DBTxnObject *)txnobj)->children_dbs,self); in DB_open() 2371 self->txn=(DBTxnObject *)txnobj; in DB_open() [all …]
|