Home
last modified time | relevance | path

Searched refs:did_work (Results 1 – 4 of 4) sorted by relevance

/external/chromium/base/
Dmessage_pump_default.cc23 bool did_work = delegate->DoWork(); in Run() local
27 did_work |= delegate->DoDelayedWork(&delayed_work_time_); in Run()
31 if (did_work) in Run()
34 did_work = delegate->DoIdleWork(); in Run()
38 if (did_work) in Run()
Dmessage_loop.cc180 bool did_work; in ~MessageLoop() local
185 did_work = DeletePendingTasks(); in ~MessageLoop()
186 if (!did_work) in ~MessageLoop()
189 DCHECK(!did_work); in ~MessageLoop()
426 bool did_work = !work_queue_.empty(); in DeletePendingTasks() local
447 did_work |= !deferred_non_nestable_work_queue_.empty(); in DeletePendingTasks()
462 did_work |= !delayed_work_queue_.empty(); in DeletePendingTasks()
468 return did_work; in DeletePendingTasks()
Dmessage_pump_libevent.cc222 bool did_work = delegate->DoWork(); in Run() local
226 did_work |= delegate->DoDelayedWork(&delayed_work_time_); in Run()
230 if (did_work) in Run()
233 did_work = delegate->DoIdleWork(); in Run()
237 if (did_work) in Run()
Dmessage_pump_mac.mm258 bool did_work = delegate_->DoWork();
259 bool resignal_work_source = did_work;
263 if (!did_work) {
266 // Only do these checks if did_work is false. If did_work is true, this
317 bool did_work = delegate_->DoIdleWork();
318 if (did_work) {
322 return did_work;