Home
last modified time | relevance | path

Searched refs:thread_persist_stats_ (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/db_impl/
Ddb_impl_debug.cc281 if (thread_persist_stats_ != nullptr) { in TEST_WaitForPersistStatsRun()
282 thread_persist_stats_->TEST_WaitForRun(callback); in TEST_WaitForPersistStatsRun()
287 return thread_persist_stats_ && thread_persist_stats_->IsRunning(); in TEST_IsPersistentStatsEnabled()
Ddb_impl.cc407 if (thread_persist_stats_ != nullptr) { in CancelAllBackgroundWork()
408 thread_persist_stats_->cancel(); in CancelAllBackgroundWork()
409 thread_persist_stats_.reset(); in CancelAllBackgroundWork()
658 if (!thread_persist_stats_) { in StartTimedTasks()
659 thread_persist_stats_.reset(new ROCKSDB_NAMESPACE::RepeatableThread( in StartTimedTasks()
1060 if (thread_persist_stats_) { in SetDBOptions()
1062 thread_persist_stats_->cancel(); in SetDBOptions()
1066 thread_persist_stats_.reset(new ROCKSDB_NAMESPACE::RepeatableThread( in SetDBOptions()
1071 thread_persist_stats_.reset(); in SetDBOptions()
Ddb_impl.h2058 std::unique_ptr<ROCKSDB_NAMESPACE::RepeatableThread> thread_persist_stats_; variable