Lines Matching refs:dispatcher
5 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
37 OptimizingCompileDispatcher* dispatcher =
39 base::LockGuard<base::Mutex> lock_guard(&dispatcher->ref_count_mutex_);
40 ++dispatcher->ref_count_;
52 OptimizingCompileDispatcher* dispatcher =
60 if (dispatcher->recompilation_delay_ != 0) {
62 dispatcher->recompilation_delay_));
65 dispatcher->CompileNext(dispatcher->NextInput(true));
68 base::LockGuard<base::Mutex> lock_guard(&dispatcher->ref_count_mutex_);
69 if (--dispatcher->ref_count_ == 0) {
70 dispatcher->ref_count_zero_.NotifyOne();