Searched refs:txns (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_printlog/
H A Dstatus.awk17 txns[cur_txn] = $5;
41 if (status[txns[i]] == 1)
42 printf("%s\tABORT\n", txns[i]);
43 else if (status[txns[i]] == 2)
44 printf("%s\tCOMMIT\n", txns[i]);
45 else if (status[txns[i]] == 3)
46 printf("%s\tABORT\n", txns[i]);
47 else if (status[txns[i]] == 4)
48 printf("%s\tOTHER\n", txns[i]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd15scr.tcl7 # Recd15 - lots of txns - txn prepare script
12 # numtxns: number of txns to start
43 puts "\tRecd015script.a: Begin $numtxns txns"
47 set txns($i) $t
55 puts "\tRecd015script.b: Prepare $numtxns txns"
62 set t $txns($i)
70 # We do not close the db or env, but exit with the txns outstanding.
H A Dtestutils.tcl1663 # recovery, then close it, which will abort the outstanding txns.
1674 # number of txns we want.
1676 set txns [$env txn_recover]
1677 error_check_bad txnrecover [llength $txns] 0
1681 set txnlist [lindex $txns 0]
1692 set txns [$env txn_recover]
1693 error_check_bad txnrecover [llength $txns] 0
1694 set txnlist [lindex $txns 0]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/txn/
H A Dtxn_recover.c123 * xids or txns must be set to point to an array of the appropriate type.
125 * txns array. The retp parameter will be set to indicate the number of
126 * entries returned in the xids/txns array. Flags indicates the operation,
133 __txn_get_prepared(env, xids, txns, count, retp, flags)
136 DB_PREPLIST *txns;
154 prepp = txns;
202 if (txns != NULL) {
236 if (txns != NULL && *retp != 0) {
239 TAILQ_INSERT_TAIL(&mgr->txn_chain, txns[i].txn, links);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/
H A DTpcbExample.java356 int txns, failed;
373 txns = failed = 0;
375 txns += txnList[i].txns;
378 gtps = (double)(txns - failed) /
381 String.valueOf(txns) + " txns " +
387 private int ntxns; /* Number of txns we were asked to run. */
388 public int txns, failed; /* Number that succeeded / failed. */ field in class:TpcbExample.TxnThread
419 for (txns
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_c/
H A Dex_thread.c54 int txns; /* Write. */ member in struct:_statistics
377 if (++perf[id].txns % 20 == 0) {
379 "writer: %2d: adds: %4d: deletes: %4d: aborts: %4d: txns: %4d\n",
381 perf[id].aborts, perf[id].txns);
391 "writer: %2d: adds: %4d: deletes: %4d: aborts: %4d: txns: %4d: ABORTED: %2d\n",
393 perf[id].aborts, perf[id].txns, perf[id].aborted);
416 "writer: %2d: adds: %4d: deletes: %4d: aborts: %4d: txns: %4d\n",
418 perf[id].deletes, perf[id].aborts, perf[id].txns);
H A Dex_tpcb.c520 int failed, ret, txns; local
568 for (txns = n, failed = 0; n-- > 0;)
580 printf("%s: %d txns: %d failed, %.3f sec, %.2f TPS\n", progname,
581 txns, failed, (end_time - start_time),
582 (txns - failed) / (double)(end_time - start_time));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/
H A DTpcbExample.cpp471 int failed, ret, txns; local
508 for (txns = n, failed = 0; n-- > 0;)
518 printf("%s: %d txns: %d failed, %.2f TPS\n", progname, txns, failed,
519 (txns - failed) / (double)(end_time - start_time));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
H A DTpcbExample.cpp275 int failed, ret, txns; local
337 for (txns = n, failed = 0; n-- > 0;)
347 "%s: %d txns: %d failed, %.2f TPS\n", progname, txns, failed,
348 (txns - failed) / elapsed_secs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/xa/
H A Dxa.c196 __xa_txn_get_prepared(env, xids, txns, count, retp, flags)
199 DB_PREPLIST *txns;
209 (__txn_get_prepared(env, xids, txns, count, retp, flags)), 0, ret);

Completed in 146 milliseconds