Home
last modified time | relevance | path

Searched refs:use_fsync (Results 1 – 25 of 34) sorted by relevance

12

/rocksdb-6.9/file/
Dfile_util.cc21 const std::string& destination, uint64_t size, bool use_fsync) { in CopyFile() argument
68 return dest_writer->Sync(use_fsync); in CopyFile()
73 const std::string& contents, bool use_fsync) { in CreateFile() argument
89 return dest_writer->Sync(use_fsync); in CreateFile()
Dwritable_file_writer.cc240 IOStatus WritableFileWriter::Sync(bool use_fsync) { in Sync() argument
247 s = SyncInternal(use_fsync); in Sync()
257 IOStatus WritableFileWriter::SyncWithoutFlush(bool use_fsync) { in SyncWithoutFlush() argument
264 IOStatus s = SyncInternal(use_fsync); in SyncWithoutFlush()
269 IOStatus WritableFileWriter::SyncInternal(bool use_fsync) { in SyncInternal() argument
275 if (use_fsync) { in SyncInternal()
Dwritable_file_writer.h141 IOStatus Sync(bool use_fsync);
146 IOStatus SyncWithoutFlush(bool use_fsync);
178 IOStatus SyncInternal(bool use_fsync);
Dfile_util.h21 bool use_fsync);
24 const std::string& contents, bool use_fsync);
Dfilename.cc421 return file->Sync(db_options->use_fsync); in SyncManifest()
/rocksdb-6.9/options/
Ddb_options.cc36 use_fsync(options.use_fsync), in ImmutableDBOptions()
120 use_fsync); in Dump()
Dcf_options.cc58 use_fsync(db_options.use_fsync), in ImmutableCFOptions()
Ddb_options.h33 bool use_fsync; member
Dcf_options.h89 bool use_fsync; member
Doptions_helper.cc50 options.use_fsync = immutable_db_options.use_fsync; in BuildDBOptions()
1497 {offsetof(struct DBOptions, use_fsync), OptionType::kBoolean,
/rocksdb-6.9/utilities/checkpoint/
Dcheckpoint_impl.cc125 db_options.use_fsync); in CreateCheckpoint()
130 contents, db_options.use_fsync); in CreateCheckpoint()
393 tmp_export_dir + fname, 0, db_options.use_fsync); in ExportColumnFamily()
/rocksdb-6.9/utilities/blob_db/
Dblob_log_writer.h41 bool use_fsync, uint64_t boffset = 0);
/rocksdb-6.9/db/
Ddb_io_failure_test.cc475 options.use_fsync = false; in TEST_F()
518 options.use_fsync = false; in TEST_F()
Dexternal_sst_file_ingestion_job.cc138 db_options_.use_fsync); in Prepare()
722 if (db_options_.use_fsync) { in SyncIngestedFile()
Dimport_column_family_job.cc104 db_options_.use_fsync); in Prepare()
Dbuilder.cc212 *io_status = file_writer->Sync(ioptions.use_fsync); in BuildTable()
Dc.cc2397 rocksdb_options_t* opt, int use_fsync) { in rocksdb_options_set_use_fsync() argument
2398 opt->rep.use_fsync = use_fsync; in rocksdb_options_set_use_fsync()
/rocksdb-6.9/examples/
Drocksdb_option_file_example.ini52 use_fsync=false
/rocksdb-6.9/include/rocksdb/
Doptions.h480 bool use_fsync = false; member
/rocksdb-6.9/db_stress_tool/
Ddb_stress_gflags.cc402 DEFINE_bool(use_fsync, false, "If true, issue fsync instead of fdatasync");
Ddb_stress_common.h160 DECLARE_bool(use_fsync);
/rocksdb-6.9/table/
Dsst_file_writer.cc296 s = r->file_writer->Sync(r->ioptions.use_fsync); in Finish()
/rocksdb-6.9/java/rocksjni/
Doptions.cc476 return reinterpret_cast<ROCKSDB_NAMESPACE::Options*>(jhandle)->use_fsync; in Java_org_rocksdb_Options_useFsync()
485 JNIEnv*, jobject, jlong jhandle, jboolean use_fsync) { in Java_org_rocksdb_Options_setUseFsync() argument
486 reinterpret_cast<ROCKSDB_NAMESPACE::Options*>(jhandle)->use_fsync = in Java_org_rocksdb_Options_setUseFsync()
487 static_cast<bool>(use_fsync); in Java_org_rocksdb_Options_setUseFsync()
5001 JNIEnv*, jobject, jlong jhandle, jboolean use_fsync) { in Java_org_rocksdb_DBOptions_setUseFsync() argument
5002 reinterpret_cast<ROCKSDB_NAMESPACE::DBOptions*>(jhandle)->use_fsync = in Java_org_rocksdb_DBOptions_setUseFsync()
5003 static_cast<bool>(use_fsync); in Java_org_rocksdb_DBOptions_setUseFsync()
5013 return reinterpret_cast<ROCKSDB_NAMESPACE::DBOptions*>(jhandle)->use_fsync; in Java_org_rocksdb_DBOptions_useFsync()
/rocksdb-6.9/test_util/
Dtestutil.cc270 db_opt->use_fsync = rnd->Uniform(2); in RandomInitDBOptions()
/rocksdb-6.9/java/benchmark/src/main/java/org/rocksdb/benchmark/
DDbBenchmark.java550 (Boolean)flags_.get(Flag.use_fsync)); in prepareOptions()
1223 use_fsync(false,"If true, issue fsync instead of fdatasync.") { in use_fsync() enumConstant

12