Home
last modified time | relevance | path

Searched refs:checkpoint_buffer_sz (Results 1 – 10 of 10) sorted by relevance

/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DIWKVOptions.java92 wal.checkpoint_buffer_sz = v; in walCheckpointBufferSize()
111 private long checkpoint_buffer_sz; field in IWKVOptions.WALOptions
130 return this.checkpoint_buffer_sz; in getCheckpointBufferSize()
138 … .add("buffer_sz=" + buffer_sz).add("checkpoint_buffer_sz=" + checkpoint_buffer_sz).toString(); in toString()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DIWKVOptions.java91 wal.checkpoint_buffer_sz = v; in walCheckpointBufferSize()
115 private long checkpoint_buffer_sz; field in IWKVOptions.WALOptions
134 return this.checkpoint_buffer_sz; in getCheckpointBufferSize()
145 .append("checkpoint_buffer_sz=").append(checkpoint_buffer_sz) in toString()
/third_party/iowow/src/kv/
Diwal.c33 size_t checkpoint_buffer_sz; /**< Checkpoint buffer size in bytes. */ member
607 return (force || mbytes >= wal->checkpoint_buffer_sz); in _need_checkpoint()
1077 wal->checkpoint_buffer_sz in iwal_create()
1078 = opts->wal.checkpoint_buffer_sz > 0 ? in iwal_create()
1079 opts->wal.checkpoint_buffer_sz : in iwal_create()
1085 if (wal->checkpoint_buffer_sz < 1024 * 1024) { // 1M minimal in iwal_create()
1086 wal->checkpoint_buffer_sz = 1024 * 1024; in iwal_create()
Diwkv.h138 uint64_t checkpoint_buffer_sz; /**< Checkpoint buffer size in bytes. Default: 1Gb */ member
/third_party/iowow/src/kv/benchmark/
Diwkv_benchmark.c48 .checkpoint_buffer_sz = 500ULL * 1024 * 1024 // 500MB in db_open()
/third_party/iowow/src/kv/tests/
Diwkv_test3.c114 .checkpoint_buffer_sz = 1024 * 1024 in iwkv_test3_impl()
Diwkv_test4.c197 .checkpoint_buffer_sz = 32 * 1024 * 1024 in iwkv_test2_impl()
/third_party/ejdb/src/bindings/ejdb2_jni/src/
Dejdb2jni.c247 opts.kv.wal.checkpoint_buffer_sz = (uint64_t) e->GetLongField(env, wal, fid); in Java_com_softmotions_ejdb2_EJDB2__1open()
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Dejdb2_dart.c984 opts.kv.wal.checkpoint_buffer_sz = cobject_int(varr[c++], true, &rc); in ejd_open_wrapped()
/third_party/ejdb/src/bindings/ejdb2_node/
Dejdb2_node.c510 jbn->opts.kv.wal.checkpoint_buffer_sz = jn_int_at(env, varr, true, false, argc++, &rc); in jn_ejdb2impl_ctor()