• 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:txnid

78 	u_int32_t rectype, status, txnid, urectype;
83 LOGCOPY_32(env, &txnid, (u_int8_t *)db->data + sizeof(rectype));
111 sizeof(rectype) + sizeof(txnid));
112 if (txnid != 0 && prev_lsn.file == 0 && (ret =
113 __db_txnlist_add(env, info, txnid, TXN_OK, NULL)) != 0)
170 if (txnid == 0)
173 ret = __db_txnlist_find(env, info, txnid, &status);
178 info, txnid, TXN_IGNORE, lsnp));
199 info, txnid, rectype == DB___txn_xa_regop ?
221 if (txnid == 0)
225 info, txnid, &status);
261 sizeof(txnid));
410 * Hi maybe lower than low if we have recycled txnid's.
461 #define FIND_GENERATION(hp, txnid, gen) do { \
467 ((txnid) >= (hp)->gen_array[__i].txn_min && \
468 (txnid) <= (hp)->gen_array[__i].txn_max) : \
469 ((txnid) >= (hp)->gen_array[__i].txn_min || \
470 (txnid) <= (hp)->gen_array[__i].txn_max)) \
484 __db_txnlist_add(env, hp, txnid, status, lsn)
487 u_int32_t txnid, status;
496 LIST_INSERT_HEAD(&hp->head[DB_TXNLIST_MASK(hp, txnid)], elp, links);
499 FIND_GENERATION(hp, txnid, elp->u.t.generation);
501 elp->u.t.txnid = txnid;
503 if (txnid > hp->maxid)
504 hp->maxid = txnid;
521 __db_txnlist_remove(env, hp, txnid)
524 u_int32_t txnid;
530 hp, TXNLIST_TXNID, txnid, &entry, 1, &status));
600 * Checks to see if a txnid with the current generation is in the
601 * txnid list. This returns DB_NOTFOUND if the item isn't in the
603 * the status of the transaction. A txnid of 0 means the record
610 __db_txnlist_find(env, hp, txnid, statusp)
613 u_int32_t txnid, *statusp;
617 if (txnid == 0)
621 TXNLIST_TXNID, txnid, &entry, 0, statusp));
633 __db_txnlist_update(env, hp, txnid, status, lsn, ret_status, add_ok)
636 u_int32_t txnid, status;
644 if (txnid == 0)
648 hp, TXNLIST_TXNID, txnid, &elp, 0, ret_status);
652 return (__db_txnlist_add(env, hp, txnid, status, lsn));
677 hp, type, txnid, txnlistp, delete, statusp)
681 u_int32_t txnid;
698 hash = txnid;
699 FIND_GENERATION(hp, txnid, generation);
713 if (p->u.t.txnid != txnid ||
765 * and logged. This code maintains a stack of ranges. A txnid
949 (u_long)p->u.t.txnid,