Home
last modified time | relevance | path

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

/external/libchrome/base/
Drun_loop.cc52 return active_run_loops_.top()->quit_when_idle_received_; in ShouldQuitWhenIdle()
98 DCHECK_EQ(this, delegate_->active_run_loops_.top()); in Run()
100 delegate_->active_run_loops_.size() == 1U || in Run()
131 if (running_ && delegate_->active_run_loops_.top() == this) { in Quit()
180 return delegate && !delegate->active_run_loops_.empty(); in IsRunningOnCurrentThread()
186 return delegate && delegate->active_run_loops_.size() > 1; in IsNestedOnCurrentThread()
207 DCHECK(delegate->active_run_loops_.top()->allow_quit_current_deprecated_) in QuitCurrentDeprecated()
209 delegate->active_run_loops_.top()->Quit(); in QuitCurrentDeprecated()
216 DCHECK(delegate->active_run_loops_.top()->allow_quit_current_deprecated_) in QuitCurrentWhenIdleDeprecated()
219 delegate->active_run_loops_.top()->QuitWhenIdle(); in QuitCurrentWhenIdleDeprecated()
[all …]
Drun_loop.h196 RunLoopStack active_run_loops_; variable