Home | History | Annotate | Download | only in base

Lines Matching refs:block

22 // Return a timeout suitable for the glib loop, -1 to block forever,
45 // system. File descriptors can be attached to the sources. The poll may block
46 // if none of the Prepare calls returned TRUE. It will block indefinitely, or
71 // thing, respecting the timeout for the poll (and block, although it is
96 // would never block. Once the poll is finished, Check will be called.
198 // will mean that we don't block on the message pump until there was nothing
199 // more to do. We also set this to true to make sure not to block on the
207 // Don't block if we think we have more work to do.
208 bool block = !more_work_is_plausible;
210 more_work_is_plausible = RunOnce(context_, block);
234 bool MessagePumpForUI::RunOnce(GMainContext* context, bool block) {
236 return g_main_context_iteration(context, block);
242 // the pump block so that we can do some processing.
247 // We don't think we have work to do, but make sure not to block
258 // poll will tell us whether there was data, so this read shouldn't block.