Home
last modified time | relevance | path

Searched refs:GetBackgroundThreads (Results 1 – 13 of 13) sorted by relevance

/rocksdb-6.9/util/
Dthreadpool_imp.cc52 int GetBackgroundThreads();
328 int ThreadPoolImpl::Impl::GetBackgroundThreads() { in GetBackgroundThreads() function in ROCKSDB_NAMESPACE::ThreadPoolImpl::Impl
439 int ThreadPoolImpl::GetBackgroundThreads() { in GetBackgroundThreads() function in ROCKSDB_NAMESPACE::ThreadPoolImpl
440 return impl_->GetBackgroundThreads(); in GetBackgroundThreads()
Dthreadpool_imp.h38 int GetBackgroundThreads() override;
/rocksdb-6.9/hdfs/
Denv_hdfs.h151 int GetBackgroundThreads(Priority pri = LOW) override {
152 return posixEnv->GetBackgroundThreads(pri);
371 virtual int GetBackgroundThreads(Priority /*pri*/ = LOW) override {
/rocksdb-6.9/include/rocksdb/
Dthreadpool.h34 virtual int GetBackgroundThreads() = 0;
Denv.h461 virtual int GetBackgroundThreads(Priority pri = LOW) = 0;
1331 int GetBackgroundThreads(Priority pri) override { in GetBackgroundThreads() function
1332 return target_->GetBackgroundThreads(pri); in GetBackgroundThreads()
/rocksdb-6.9/port/win/
Denv_win.h68 int GetBackgroundThreads(Env::Priority pri);
326 int GetBackgroundThreads(Env::Priority pri) override;
Denv_win.cc1285 int WinEnvThreads::GetBackgroundThreads(Env::Priority pri) { in GetBackgroundThreads() function in ROCKSDB_NAMESPACE::port::WinEnvThreads
1287 return thread_pools_[pri].GetBackgroundThreads(); in GetBackgroundThreads()
1496 int WinEnv::GetBackgroundThreads(Env::Priority pri) { in GetBackgroundThreads() function in ROCKSDB_NAMESPACE::port::WinEnv
1497 return winenv_threads_.GetBackgroundThreads(pri); in GetBackgroundThreads()
/rocksdb-6.9/env/
Denv_posix.cc330 int GetBackgroundThreads(Priority pri) override { in GetBackgroundThreads() function in ROCKSDB_NAMESPACE::__anon43aff5a30111::PosixEnv
332 return thread_pools_[pri].GetBackgroundThreads(); in GetBackgroundThreads()
Denv_test.cc2087 ASSERT_EQ(env1->GetBackgroundThreads(Env::LOW), 16); in TEST_P()
2088 ASSERT_EQ(env1->GetBackgroundThreads(Env::HIGH), 8); in TEST_P()
2089 ASSERT_EQ(env2->GetBackgroundThreads(Env::LOW), 16); in TEST_P()
2090 ASSERT_EQ(env2->GetBackgroundThreads(Env::HIGH), 8); in TEST_P()
Dcomposite_env_wrapper.h538 int GetBackgroundThreads(Priority pri) override { in GetBackgroundThreads() function
539 return env_target_->GetBackgroundThreads(pri); in GetBackgroundThreads()
/rocksdb-6.9/java/rocksjni/
Denv.cc63 const int num = rocks_env->GetBackgroundThreads( in Java_org_rocksdb_Env_getBackgroundThreads()
/rocksdb-6.9/db/
Ddb_options_test.cc435 env_->GetBackgroundThreads(Env::Priority::HIGH)); in TEST_F()
437 env_->GetBackgroundThreads(Env::Priority::LOW)); in TEST_F()
/rocksdb-6.9/db/db_impl/
Ddb_impl_compaction_flush.cc1548 env_->GetBackgroundThreads(Env::Priority::BOTTOM) > 0) { in RunManualCompaction()
1970 env_->GetBackgroundThreads(Env::Priority::HIGH) == 0; in MaybeScheduleFlushOrCompaction()
2788 env_->GetBackgroundThreads(Env::Priority::BOTTOM) > 0) { in BackgroundCompaction()