• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db/

Lines Matching refs:txn

53 #include "dbinc/txn.h"
77 __db_master_open(subdbp, ip, txn, name, flags, mode, dbpp)
80 DB_TXN *txn;
115 txn, name, NULL, DB_BTREE, flags, mode, PGNO_BASE_MD)) != 0)
137 (void)__db_close(dbp, txn, 0);
151 __db_master_update(mdbp, sdbp, ip, txn, subdb, type, action, newname, flags)
153 DB_TXN *txn;
180 if ((ret = __db_cursor(mdbp, ip, txn, &dbc,
235 ip, dbc->txn, DB_MPOOL_DIRTY, &p)) != 0)
242 &((BTMETA *)p)->root, ip, dbc->txn,
271 if ((ret = __db_cursor(mdbp, ip, txn, &ndbc,
301 * we just put, in case we're not txn-protected.
386 __env_setup(dbp, txn, fname, dname, id, flags)
388 DB_TXN *txn;
433 && (txn != NULL || F_ISSET(dbp, DB_AM_RECOVER))
450 (ret = __dbreg_new_id(dbp, txn)) != 0)
673 __db_close(dbp, txn, flags)
675 DB_TXN *txn;
691 if (txn != NULL)
692 (void)__db_check_txn(dbp, txn, DB_LOCK_INVALIDID, 0);
695 ret = __db_refresh(dbp, txn, flags, &deferred_close, 0);
740 __db_refresh(dbp, txn, flags, deferred_closep, reuse)
742 DB_TXN *txn;
899 txn, DBREG_CLOSE)) != 0 && txn != NULL) {
901 * We're in a txn and the attempt to log the
902 * close failed; let the txn subsystem know
913 __txn_closeevent(env, txn, dbp)) != 0)
1011 if (txn == NULL)
1012 txn = dbp->cur_txn;
1013 if (IS_REAL_TXN(txn))
1015 txn, &dbp->handle_lock, dbp->locker);
1123 * If we are being refreshed with a txn specified, then we need
1129 if (txn != NULL)
1216 __db_log_page(dbp, txn, lsn, pgno, page)
1218 DB_TXN *txn;
1227 if (!LOGGING_ON(dbp->env) || txn == NULL)
1234 ret = __crdel_metasub_log(dbp, txn, &new_lsn, 0, pgno, &page_dbt, lsn);
1255 __db_backup_name(env, name, txn, backup)
1258 DB_TXN *txn;
1293 if (IS_REAL_TXN(txn)) {
1297 BACKUP_PREFIX, txn->txnid, id);
1300 (int)(p - name) + 1, name, txn->txnid, id);