HomeSort by relevance Sort by last modified time
    Searched refs:more_work_is_plausible (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/base/test/
test_support_android.cc 90 bool more_work_is_plausible = true; variable
93 if (!more_work_is_plausible) {
99 more_work_is_plausible = g_state->delegate->DoWork();
104 more_work_is_plausible |=
109 if (more_work_is_plausible)
112 more_work_is_plausible = g_state->delegate->DoIdleWork();
116 more_work_is_plausible |= !delayed_work_time.is_null();
  /external/chromium_org/base/message_loop/
message_pump_glib.cc 196 bool more_work_is_plausible = true; local
203 bool block = !more_work_is_plausible;
205 more_work_is_plausible = g_main_context_iteration(context_, block);
209 more_work_is_plausible |= state_->delegate->DoWork();
213 more_work_is_plausible |=
218 if (more_work_is_plausible)
221 more_work_is_plausible = state_->delegate->DoIdleWork();
message_pump_win.cc 239 bool more_work_is_plausible = ProcessNextWindowsMessage(); local
243 more_work_is_plausible |= state_->delegate->DoWork();
247 more_work_is_plausible |=
253 if (more_work_is_plausible && delayed_work_time_.is_null())
258 if (more_work_is_plausible)
261 more_work_is_plausible = state_->delegate->DoIdleWork();
265 if (more_work_is_plausible)
529 bool more_work_is_plausible = state_->delegate->DoWork(); local
533 more_work_is_plausible |= WaitForIOCompletion(0, NULL);
537 more_work_is_plausible |
    [all...]
  /external/chromium/base/
message_pump_win.cc 199 bool more_work_is_plausible = ProcessNextWindowsMessage(); local
203 more_work_is_plausible |= state_->delegate->DoWork();
207 more_work_is_plausible |=
213 if (more_work_is_plausible && delayed_work_time_.is_null())
218 if (more_work_is_plausible)
221 more_work_is_plausible = state_->delegate->DoIdleWork();
225 if (more_work_is_plausible)
454 bool more_work_is_plausible = state_->delegate->DoWork(); local
458 more_work_is_plausible |= WaitForIOCompletion(0, NULL);
462 more_work_is_plausible |
    [all...]
message_pump_glib.cc 201 bool more_work_is_plausible = true; local
208 bool block = !more_work_is_plausible;
210 more_work_is_plausible = RunOnce(context_, block);
214 more_work_is_plausible |= state_->delegate->DoWork();
218 more_work_is_plausible |=
223 if (more_work_is_plausible)
226 more_work_is_plausible = state_->delegate->DoIdleWork();

Completed in 167 milliseconds