Searched refs:kbytes (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DCheckpointConfig.java25 private int kbytes = 0; field in class:CheckpointConfig
45 @param kbytes
46 If the kbytes parameter is non-zero, a checkpoint will be performed if more
47 than kbytes of log data have been written since the last checkpoint.
49 public void setKBytes(final int kbytes) { argument
50 this.kbytes = kbytes;
62 return kbytes;
115 dbenv.txn_checkpoint(kbytes, minutes, force ? DbConstants.DB_FORCE : 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_checkpoint/
H A Ddb_checkpoint.c48 u_int32_t flags, kbytes, minutes, seconds; local
68 kbytes = minutes = 0;
86 kbytes = (u_int32_t)argval;
122 if (once == 0 && kbytes == 0 && minutes == 0) {
169 * to wake up when a checkpoint is necessary. If we have a "kbytes"
172 seconds = kbytes != 0 ? 30 : minutes * 60;
181 kbytes, minutes, flags)) != 0) {
226 "[-h home] [-k kbytes] [-L file] [-P password] [-p min]");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_checkpoint/
H A Ddb_checkpoint.c34 u_int32_t flags, kbytes, minutes, seconds; local
54 kbytes = minutes = 0;
71 kbytes = (u_int32_t)argval;
107 if (once == 0 && kbytes == 0 && minutes == 0) {
154 * to wake up when a checkpoint is necessary. If we have a "kbytes"
157 seconds = kbytes != 0 ? 30 : minutes * 60;
166 kbytes, minutes, flags)) != 0) {
211 "[-h home] [-k kbytes] [-L file] [-P password] [-p min]");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/txn/
H A Dtxn_chkpt.c55 __txn_checkpoint_pp(dbenv, kbytes, minutes, flags)
57 u_int32_t kbytes, minutes, flags;
82 (__txn_checkpoint(env, kbytes, minutes, flags)), 0, ret);
95 __txn_checkpoint(env, kbytes, minutes, flags)
97 u_int32_t kbytes, minutes, flags;
134 * If either kbytes or minutes is non-zero, then only take the
136 * more than "kbytes" of log data have been written since the
139 if (kbytes != 0 &&
140 mbytes * 1024 + bytes / 1024 >= (u_int32_t)kbytes)
158 if (minutes != 0 || kbytes !
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/php_db4/
H A Ddb4.cpp2054 /* {{{ Db4Env::txn_checkpoint(long $kbytes, long $minutes [, long $flags])
2060 u_int32_t kbytes = 0; local
2067 if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll|l", &kbytes, &mins, &flags) == FAILURE)
2071 if((ret = dbenv->txn_checkpoint(dbenv, kbytes, mins, flags)) != 0) {

Completed in 139 milliseconds