Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_bsddb.c740 static int checkTxnObj(PyObject* txnobj, DB_TXN** txn) in checkTxnObj() argument
742 if (txnobj == Py_None || txnobj == NULL) { in checkTxnObj()
746 if (DBTxnObject_Check(txnobj)) { in checkTxnObj()
747 *txn = ((DBTxnObject*)txnobj)->txn; in checkTxnObj()
751 makeTypeError("DBTxn", txnobj); in checkTxnObj()
1421 PyObject* txnobj = NULL; in DB_append() local
1429 &dataobj, &txnobj)) in DB_append()
1443 if (!checkTxnObj(txnobj, &txn)) return NULL; in DB_append()
1599 PyObject *txnobj = NULL; in DB_associate() local
1606 &txnobj)) { in DB_associate()
[all …]