Home
last modified time | relevance | path

Searched refs:savepoint_timeout_sec (Results 1 – 9 of 9) sorted by relevance

/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DIWKVOptions.java77 wal.savepoint_timeout_sec = v; in walSavepointTimeoutSec()
108 private int savepoint_timeout_sec; field in IWKVOptions.WALOptions
118 return this.savepoint_timeout_sec; in getSavePointTimeoutSec()
137 ….add("savepoint_timeout_sec=" + savepoint_timeout_sec).add("checkpoint_timeout_sec=" + checkpoint_… in toString()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DIWKVOptions.java76 wal.savepoint_timeout_sec = v; in walSavepointTimeoutSec()
112 private int savepoint_timeout_sec; field in IWKVOptions.WALOptions
122 return this.savepoint_timeout_sec; in getSavePointTimeoutSec()
142 .append("savepoint_timeout_sec=").append(savepoint_timeout_sec).append(", ") in toString()
/third_party/iowow/src/kv/tests/
Diwkv_test4.c56 .savepoint_timeout_sec = 2, in iwkv_test4_4()
96 .savepoint_timeout_sec = UINT32_MAX in iwkv_test4_3_impl()
195 .savepoint_timeout_sec = UINT32_MAX, in iwkv_test2_impl()
254 .savepoint_timeout_sec = UINT32_MAX in iwkv_test1_impl()
/third_party/iowow/src/kv/
Diwal.c49 uint32_t savepoint_timeout_sec; /**< Savepoint timeout seconds */ member
827 …= !synched && (wal->force_sp || ((tick_ts - savepoint_ts) >= 1000LL * wal->savepoint_timeout_sec)); in _cpt_worker_fn()
984 if (wal->savepoint_timeout_sec == UINT32_MAX in _init_cpt()
1089 wal->savepoint_timeout_sec in iwal_create()
1090 = opts->wal.savepoint_timeout_sec > 0 ? in iwal_create()
1091 opts->wal.savepoint_timeout_sec : 10; // 10 sec in iwal_create()
1104 if (wal->savepoint_timeout_sec >= wal->checkpoint_timeout_sec) { in iwal_create()
1105 wal->savepoint_timeout_sec = wal->checkpoint_timeout_sec / 2; in iwal_create()
Diwkv.h135 uint32_t savepoint_timeout_sec; /**< Savepoint timeout seconds. Default: 10 sec */ member
/third_party/iowow/src/kv/benchmark/
Diwkv_benchmark.c45 .savepoint_timeout_sec = 10, // 10 sec in db_open()
/third_party/ejdb/src/bindings/ejdb2_jni/src/
Dejdb2jni.c238 opts.kv.wal.savepoint_timeout_sec = (uint32_t) e->GetIntField(env, wal, fid); in Java_com_softmotions_ejdb2_EJDB2__1open()
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Dejdb2_dart.c988 opts.kv.wal.savepoint_timeout_sec = cobject_int(varr[c++], true, &rc); in ejd_open_wrapped()
/third_party/ejdb/src/bindings/ejdb2_node/
Dejdb2_node.c514 jbn->opts.kv.wal.savepoint_timeout_sec = jn_int_at(env, varr, true, false, argc++, &rc); in jn_ejdb2impl_ctor()