• Home
  • Raw
  • Download

Lines Matching refs:RunLoop

20 LazyInstance<ThreadLocalPointer<RunLoop::Delegate>>::Leaky tls_delegate =
36 RunLoop::Delegate::Delegate() { in Delegate()
42 RunLoop::Delegate::~Delegate() { in ~Delegate()
51 bool RunLoop::Delegate::ShouldQuitWhenIdle() { in ShouldQuitWhenIdle()
56 void RunLoop::RegisterDelegateForCurrentThread(Delegate* delegate) { in RegisterDelegateForCurrentThread()
70 RunLoop::RunLoop(Type type) in RunLoop() function in base::RunLoop
80 RunLoop::~RunLoop() { in ~RunLoop()
85 void RunLoop::Run() { in Run()
111 void RunLoop::RunUntilIdle() { in RunUntilIdle()
118 void RunLoop::Quit() { in Quit()
126 FROM_HERE, base::BindOnce(&RunLoop::Quit, Unretained(this))); in Quit()
137 void RunLoop::QuitWhenIdle() { in QuitWhenIdle()
145 FROM_HERE, base::BindOnce(&RunLoop::QuitWhenIdle, Unretained(this))); in QuitWhenIdle()
152 base::Closure RunLoop::QuitClosure() { in QuitClosure()
161 base::Bind(&RunLoop::Quit, weak_factory_.GetWeakPtr())); in QuitClosure()
164 base::Closure RunLoop::QuitWhenIdleClosure() { in QuitWhenIdleClosure()
174 base::Bind(&RunLoop::QuitWhenIdle, weak_factory_.GetWeakPtr())); in QuitWhenIdleClosure()
178 bool RunLoop::IsRunningOnCurrentThread() { in IsRunningOnCurrentThread()
184 bool RunLoop::IsNestedOnCurrentThread() { in IsNestedOnCurrentThread()
190 void RunLoop::AddNestingObserverOnCurrentThread(NestingObserver* observer) { in AddNestingObserverOnCurrentThread()
197 void RunLoop::RemoveNestingObserverOnCurrentThread(NestingObserver* observer) { in RemoveNestingObserverOnCurrentThread()
204 void RunLoop::QuitCurrentDeprecated() { in QuitCurrentDeprecated()
213 void RunLoop::QuitCurrentWhenIdleDeprecated() { in QuitCurrentWhenIdleDeprecated()
223 Closure RunLoop::QuitCurrentWhenIdleClosureDeprecated() { in QuitCurrentWhenIdleClosureDeprecated()
229 return Bind(&RunLoop::QuitCurrentWhenIdleDeprecated); in QuitCurrentWhenIdleClosureDeprecated()
233 RunLoop::ScopedDisallowRunningForTesting::ScopedDisallowRunningForTesting() in ScopedDisallowRunningForTesting()
242 RunLoop::ScopedDisallowRunningForTesting::~ScopedDisallowRunningForTesting() { in ~ScopedDisallowRunningForTesting()
251 RunLoop::ScopedDisallowRunningForTesting::ScopedDisallowRunningForTesting() =
253 RunLoop::ScopedDisallowRunningForTesting::~ScopedDisallowRunningForTesting() =
257 bool RunLoop::BeforeRun() { in BeforeRun()
290 void RunLoop::AfterRun() { in AfterRun()
299 RunLoop* previous_run_loop = in AfterRun()