Home
last modified time | relevance | path

Searched refs:verification_thread_pool_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Doat_file_manager.cc1004 if (verification_thread_pool_ == nullptr) { in RunBackgroundVerification()
1005 verification_thread_pool_.reset( in RunBackgroundVerification()
1007 verification_thread_pool_->StartWorkers(self); in RunBackgroundVerification()
1009 verification_thread_pool_->AddTask(self, new BackgroundVerificationTask( in RunBackgroundVerification()
1020 if (verification_thread_pool_ != nullptr) { in WaitForWorkersToBeCreated()
1021 verification_thread_pool_->WaitForWorkersToBeCreated(); in WaitForWorkersToBeCreated()
1026 verification_thread_pool_.reset(nullptr); in DeleteThreadPool()
1030 if (verification_thread_pool_ != nullptr) { in WaitForBackgroundVerificationTasks()
1032 verification_thread_pool_->WaitForWorkersToBeCreated(); in WaitForBackgroundVerificationTasks()
1033 verification_thread_pool_->Wait(self, /* do_work= */ true, /* may_hold_locks= */ false); in WaitForBackgroundVerificationTasks()
Doat_file_manager.h192 std::unique_ptr<ThreadPool> verification_thread_pool_; variable