Home
last modified time | relevance | path

Searched refs:writable_file_max_buffer_size (Results 1 – 24 of 24) sorted by relevance

/rocksdb-6.9/java/rocksjni/
Denv_options.cc272 JNIEnv*, jobject, jlong jhandle, jlong writable_file_max_buffer_size) { in Java_org_rocksdb_EnvOptions_setWritableFileMaxBufferSize() argument
273 ENV_OPTIONS_SET_SIZE_T(jhandle, writable_file_max_buffer_size); in Java_org_rocksdb_EnvOptions_setWritableFileMaxBufferSize()
283 return ENV_OPTIONS_GET(jhandle, writable_file_max_buffer_size); in Java_org_rocksdb_EnvOptions_writableFileMaxBufferSize()
Doptions.cc1488 opt->writable_file_max_buffer_size = in Java_org_rocksdb_Options_setWritableFileMaxBufferSize()
1500 return static_cast<jlong>(opt->writable_file_max_buffer_size); in Java_org_rocksdb_Options_writableFileMaxBufferSize()
5891 opt->writable_file_max_buffer_size = in Java_org_rocksdb_DBOptions_setWritableFileMaxBufferSize()
5903 return static_cast<jlong>(opt->writable_file_max_buffer_size); in Java_org_rocksdb_DBOptions_writableFileMaxBufferSize()
/rocksdb-6.9/options/
Ddb_options.cc263 writable_file_max_buffer_size(1024 * 1024), in MutableDBOptions()
281 writable_file_max_buffer_size(options.writable_file_max_buffer_size), in MutableDBOptions()
304 writable_file_max_buffer_size); in Dump()
Ddb_options.h105 size_t writable_file_max_buffer_size; member
Doptions_helper.cc101 options.writable_file_max_buffer_size = in BuildDBOptions()
102 mutable_db_options.writable_file_max_buffer_size; in BuildDBOptions()
1646 {offsetof(struct DBOptions, writable_file_max_buffer_size),
1648 offsetof(struct MutableDBOptions, writable_file_max_buffer_size)}},
Doptions_test.cc279 ASSERT_EQ(new_db_opt.writable_file_max_buffer_size, 314159); in TEST_F()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DMutableDBOptions.java87 writable_file_max_buffer_size(ValueType.LONG), enumConstant
195 return setLong(DBOption.writable_file_max_buffer_size, in setWritableFileMaxBufferSize()
201 return getLong(DBOption.writable_file_max_buffer_size); in writableFileMaxBufferSize()
/rocksdb-6.9/env/
Denv.cc396 env_options->writable_file_max_buffer_size = in AssignEnvOptions()
397 options.writable_file_max_buffer_size; in AssignEnvOptions()
409 optimized_env_options.writable_file_max_buffer_size = in OptimizeForLogWrite()
410 db_options.writable_file_max_buffer_size; in OptimizeForLogWrite()
458 options.writable_file_max_buffer_size = 1024 * 1024; in NewEnvLogger()
Dfile_system.cc59 optimized_file_options.writable_file_max_buffer_size = in OptimizeForLogWrite()
60 db_options.writable_file_max_buffer_size; in OptimizeForLogWrite()
Dfs_posix.cc888 optimized.writable_file_max_buffer_size = in OptimizeForLogWrite()
889 db_options.writable_file_max_buffer_size; in OptimizeForLogWrite()
/rocksdb-6.9/db/
Derror_handler_fs_test.cc716 options.writable_file_max_buffer_size = 32768; in TEST_F()
788 options.writable_file_max_buffer_size = 32768; in TEST_F()
883 options.writable_file_max_buffer_size = 32768; in TEST_F()
979 options[i].writable_file_max_buffer_size = 32768; in TEST_F()
1080 options[i].writable_file_max_buffer_size = 32768; in TEST_F()
Ddb_options_test.cc211 options.writable_file_max_buffer_size = 1024 * 1024; in TEST_F()
218 dbfull()->GetDBOptions().writable_file_max_buffer_size); in TEST_F()
249 dbfull()->GetDBOptions().writable_file_max_buffer_size); in TEST_F()
Ddb_io_failure_test.cc260 options.writable_file_max_buffer_size = 128 * 1024; in TEST_F()
319 options.writable_file_max_buffer_size = 128 * 1024; in TEST_F()
Ddb_write_test.cc241 options.writable_file_max_buffer_size = 4 * 1024 * 1024; in TEST_P()
Dversion_set.h1068 file_options_.writable_file_max_buffer_size = in ChangeFileOptions()
1069 new_options.writable_file_max_buffer_size; in ChangeFileOptions()
Dc.cc2508 opt->rep.writable_file_max_buffer_size = static_cast<size_t>(v); in rocksdb_options_set_writable_file_max_buffer_size()
/rocksdb-6.9/file/
Dwritable_file_writer.h89 max_buffer_size_(options.writable_file_max_buffer_size), in writable_file_()
/rocksdb-6.9/examples/
Drocksdb_option_file_example.ini50 writable_file_max_buffer_size=1048576
/rocksdb-6.9/include/rocksdb/
Doptions.h808 size_t writable_file_max_buffer_size = 1024 * 1024; member
Denv.h128 size_t writable_file_max_buffer_size = 1024 * 1024; member
/rocksdb-6.9/port/win/
Denv_win.cc1097 optimized.writable_file_max_buffer_size = in OptimizeForLogWrite()
1098 db_options.writable_file_max_buffer_size; in OptimizeForLogWrite()
/rocksdb-6.9/util/
Dfile_reader_writer_test.cc152 env_options.writable_file_max_buffer_size = in TEST_F()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc553 DEFINE_int32(writable_file_max_buffer_size, 1024 * 1024,
3662 options.writable_file_max_buffer_size = FLAGS_writable_file_max_buffer_size; in InitializeOptionsFromFlags()
/rocksdb-6.9/
DHISTORY.md565 * `DBOptions::writable_file_max_buffer_size` can now be changed dynamically.