Home
last modified time | relevance | path

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

/dports/databases/pgbouncer/pgbouncer-1.16.0/src/
H A Dstats.c30 stat->xact_count = 0; in reset_stats()
41 total->xact_count += stat->xact_count; in stat_add()
49 uint64_t xact_count; in calc_average() local
59 xact_count = cur->xact_count - old->xact_count; in calc_average()
62 avg->xact_count = USEC * xact_count / dur; in calc_average()
70 if (xact_count > 0) in calc_average()
85 avg.xact_count, avg.query_count, in write_stats()
315 WTOTAL(xact_count); in show_stat_totals()
322 WAVG(xact_count); in show_stat_totals()
368 avg.xact_count, avg.query_count, in refresh_stats()
[all …]
H A Dclient.c943 client->pool->stats.xact_count++; in handle_client_work()
/dports/finance/ledger/ledger-3.2.1/src/
H A Dtimelog.cc135 std::size_t xact_count = 0; in clock_out_from_timelog() local
145 ++xact_count; in clock_out_from_timelog()
152 ++xact_count; in clock_out_from_timelog()
157 return xact_count; in clock_out_from_timelog()
H A Dsession.cc86 std::size_t xact_count = 0; in read_data() local
172 xact_count += journal->read(parsing_context); in read_data()
181 DEBUG("ledger.read", "xact_count [" << xact_count in read_data()
183 assert(xact_count == journal->xacts.size()); in read_data()
/dports/databases/pgbouncer/pgbouncer-1.16.0/include/
H A Dbouncer.h247 uint64_t xact_count; member