Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_manager.cc770 if (verification_thread_pool_ == nullptr) { in RunBackgroundVerification()
771 verification_thread_pool_.reset( in RunBackgroundVerification()
773 verification_thread_pool_->StartWorkers(self); in RunBackgroundVerification()
775 verification_thread_pool_->AddTask(self, new BackgroundVerificationTask( in RunBackgroundVerification()
786 if (verification_thread_pool_ != nullptr) { in WaitForWorkersToBeCreated()
787 verification_thread_pool_->WaitForWorkersToBeCreated(); in WaitForWorkersToBeCreated()
792 verification_thread_pool_.reset(nullptr); in DeleteThreadPool()
796 if (verification_thread_pool_ != nullptr) { in WaitForBackgroundVerificationTasks()
798 verification_thread_pool_->WaitForWorkersToBeCreated(); in WaitForBackgroundVerificationTasks()
799 verification_thread_pool_->Wait(self, /* do_work= */ true, /* may_hold_locks= */ false); in WaitForBackgroundVerificationTasks()
Doat_file_manager.h165 std::unique_ptr<ThreadPool> verification_thread_pool_; variable