• Home
  • Raw
  • Download

Lines Matching refs:MessageLoop

28     MessageLoop::current()->Quit();  in Run()
49 MessageLoop::current()->Quit(); in Run()
69 MessageLoop::current()->Quit(); in Run()
77 void RunTest_OneShotTimer(MessageLoop::Type message_loop_type) { in RunTest_OneShotTimer()
78 MessageLoop loop(message_loop_type); in RunTest_OneShotTimer()
84 MessageLoop::current()->Run(); in RunTest_OneShotTimer()
89 void RunTest_OneShotTimer_Cancel(MessageLoop::Type message_loop_type) { in RunTest_OneShotTimer_Cancel()
90 MessageLoop loop(message_loop_type); in RunTest_OneShotTimer_Cancel()
96 MessageLoop::current()->DeleteSoon(FROM_HERE, a); in RunTest_OneShotTimer_Cancel()
105 MessageLoop::current()->Run(); in RunTest_OneShotTimer_Cancel()
111 void RunTest_OneShotSelfDeletingTimer(MessageLoop::Type message_loop_type) { in RunTest_OneShotSelfDeletingTimer()
112 MessageLoop loop(message_loop_type); in RunTest_OneShotSelfDeletingTimer()
118 MessageLoop::current()->Run(); in RunTest_OneShotSelfDeletingTimer()
123 void RunTest_RepeatingTimer(MessageLoop::Type message_loop_type) { in RunTest_RepeatingTimer()
124 MessageLoop loop(message_loop_type); in RunTest_RepeatingTimer()
130 MessageLoop::current()->Run(); in RunTest_RepeatingTimer()
135 void RunTest_RepeatingTimer_Cancel(MessageLoop::Type message_loop_type) { in RunTest_RepeatingTimer_Cancel()
136 MessageLoop loop(message_loop_type); in RunTest_RepeatingTimer_Cancel()
142 MessageLoop::current()->DeleteSoon(FROM_HERE, a); in RunTest_RepeatingTimer_Cancel()
151 MessageLoop::current()->Run(); in RunTest_RepeatingTimer_Cancel()
174 void RunTest_DelayTimer_NoCall(MessageLoop::Type message_loop_type) { in RunTest_DelayTimer_NoCall()
175 MessageLoop loop(message_loop_type); in RunTest_DelayTimer_NoCall()
185 MessageLoop::current()->Run(); in RunTest_DelayTimer_NoCall()
190 void RunTest_DelayTimer_OneCall(MessageLoop::Type message_loop_type) { in RunTest_DelayTimer_OneCall()
191 MessageLoop loop(message_loop_type); in RunTest_DelayTimer_OneCall()
201 MessageLoop::current()->Run(); in RunTest_DelayTimer_OneCall()
223 void RunTest_DelayTimer_Reset(MessageLoop::Type message_loop_type) { in RunTest_DelayTimer_Reset()
224 MessageLoop loop(message_loop_type); in RunTest_DelayTimer_Reset()
243 MessageLoop::current()->Run(); in RunTest_DelayTimer_Reset()
256 void RunTest_DelayTimer_Deleted(MessageLoop::Type message_loop_type) { in RunTest_DelayTimer_Deleted()
257 MessageLoop loop(message_loop_type); in RunTest_DelayTimer_Deleted()
280 RunTest_OneShotTimer(MessageLoop::TYPE_DEFAULT); in TEST()
281 RunTest_OneShotTimer(MessageLoop::TYPE_UI); in TEST()
282 RunTest_OneShotTimer(MessageLoop::TYPE_IO); in TEST()
286 RunTest_OneShotTimer_Cancel(MessageLoop::TYPE_DEFAULT); in TEST()
287 RunTest_OneShotTimer_Cancel(MessageLoop::TYPE_UI); in TEST()
288 RunTest_OneShotTimer_Cancel(MessageLoop::TYPE_IO); in TEST()
294 RunTest_OneShotSelfDeletingTimer(MessageLoop::TYPE_DEFAULT); in TEST()
295 RunTest_OneShotSelfDeletingTimer(MessageLoop::TYPE_UI); in TEST()
296 RunTest_OneShotSelfDeletingTimer(MessageLoop::TYPE_IO); in TEST()
300 RunTest_RepeatingTimer(MessageLoop::TYPE_DEFAULT); in TEST()
301 RunTest_RepeatingTimer(MessageLoop::TYPE_UI); in TEST()
302 RunTest_RepeatingTimer(MessageLoop::TYPE_IO); in TEST()
306 RunTest_RepeatingTimer_Cancel(MessageLoop::TYPE_DEFAULT); in TEST()
307 RunTest_RepeatingTimer_Cancel(MessageLoop::TYPE_UI); in TEST()
308 RunTest_RepeatingTimer_Cancel(MessageLoop::TYPE_IO); in TEST()
312 RunTest_DelayTimer_NoCall(MessageLoop::TYPE_DEFAULT); in TEST()
313 RunTest_DelayTimer_NoCall(MessageLoop::TYPE_UI); in TEST()
314 RunTest_DelayTimer_NoCall(MessageLoop::TYPE_IO); in TEST()
318 RunTest_DelayTimer_OneCall(MessageLoop::TYPE_DEFAULT); in TEST()
319 RunTest_DelayTimer_OneCall(MessageLoop::TYPE_UI); in TEST()
320 RunTest_DelayTimer_OneCall(MessageLoop::TYPE_IO); in TEST()
325 RunTest_DelayTimer_Reset(MessageLoop::TYPE_DEFAULT); in TEST()
326 RunTest_DelayTimer_Reset(MessageLoop::TYPE_UI); in TEST()
327 RunTest_DelayTimer_Reset(MessageLoop::TYPE_IO); in TEST()
331 RunTest_DelayTimer_Deleted(MessageLoop::TYPE_DEFAULT); in TEST()
332 RunTest_DelayTimer_Deleted(MessageLoop::TYPE_UI); in TEST()
333 RunTest_DelayTimer_Deleted(MessageLoop::TYPE_IO); in TEST()
348 MessageLoop loop(MessageLoop::TYPE_DEFAULT); in TEST()