Home
last modified time | relevance | path

Searched refs:restore_options (Results 1 – 7 of 7) sorted by relevance

/rocksdb-6.9/examples/
Dc_simple_example.c62 rocksdb_restore_options_t *restore_options = rocksdb_restore_options_create(); in main() local
64 restore_options, &err); in main()
66 rocksdb_restore_options_destroy(restore_options); in main()
/rocksdb-6.9/java/rocksjni/
Dbackupenginejni.cc214 auto* restore_options = reinterpret_cast<ROCKSDB_NAMESPACE::RestoreOptions*>( in Java_org_rocksdb_BackupEngine_restoreDbFromBackup() local
218 *restore_options); in Java_org_rocksdb_BackupEngine_restoreDbFromBackup()
251 auto* restore_options = reinterpret_cast<ROCKSDB_NAMESPACE::RestoreOptions*>( in Java_org_rocksdb_BackupEngine_restoreDbFromLatestBackup() local
254 *restore_options); in Java_org_rocksdb_BackupEngine_restoreDbFromLatestBackup()
/rocksdb-6.9/utilities/backupable/
Dbackupable_db_test.cc623 RestoreOptions restore_options(keep_log_files); in AssertBackupConsistency() local
631 restore_options)); in AssertBackupConsistency()
634 restore_options)); in AssertBackupConsistency()
1464 RestoreOptions restore_options(false); in TEST_F() local
1466 dbname_, dbname_, restore_options)); in TEST_F()
/rocksdb-6.9/db/
Dc_test.c573 rocksdb_restore_options_t *restore_options = rocksdb_restore_options_create(); in main() local
574 rocksdb_restore_options_set_keep_log_files(restore_options, 0); in main()
575 rocksdb_backup_engine_restore_db_from_latest_backup(be, dbname, dbname, restore_options, &err); in main()
577 rocksdb_restore_options_destroy(restore_options); in main()
Dc.cc592 const rocksdb_restore_options_t* restore_options, char** errptr) { in rocksdb_backup_engine_restore_db_from_latest_backup() argument
595 restore_options->rep)); in rocksdb_backup_engine_restore_db_from_latest_backup()
/rocksdb-6.9/db_stress_tool/
Ddb_stress_test_base.cc1211 Options restore_options(options_); in TestBackupRestore() local
1212 restore_options.listeners.clear(); in TestBackupRestore()
1220 cf_descriptors.emplace_back(name, ColumnFamilyOptions(restore_options)); in TestBackupRestore()
1222 s = DB::Open(DBOptions(restore_options), restore_dir, cf_descriptors, in TestBackupRestore()
/rocksdb-6.9/include/rocksdb/
Dc.h172 const rocksdb_restore_options_t* restore_options, char** errptr);