Home | History | Annotate | Download | only in base

Lines Matching full:loop

8 // loops such as the NSApplication event loop.
13 // implement the specific run loop. Concrete subclasses must provide their
16 // A concrete subclass that just runs a CFRunLoop loop is provided in
20 // For the application's event loop, an implementation based on AppKit's
106 // within a nested run loop. This is associated with
108 // MaybeScheduleNestingDeferredWork when returning from a nested loop,
109 // so that an outer loop will be able to perform the necessary tasks if it
115 // loop goes to sleep, exits, or begins processing sources at the top of its
116 // loop. If this function detects that a nested loop had run since the
122 // the run loop goes to sleep. Associated with idle_work_observer_.
126 // Observer callback called before the run loop processes any sources.
131 // Observer callback called when the run loop starts and stops, at the
148 // The thread's run loop.
176 // The recursion depth of the currently-executing CFRunLoopRun loop on the
177 // run loop's thread. 0 if no run loops are running inside of whatever scope
182 // innermost executing CFRunLoopRun loop started by a call to Run.
212 // (innermost_quittable_) but some other CFRunLoopRun loop (nesting_level_)
229 // attached to the run loop. This source will be signalled when Quit
230 // is called, to cause the loop to wake up so that it can stop.
254 // True if DoRun is managing its own run loop as opposed to letting
255 // -[NSApplication run] handle it. The outermost run loop in the application
256 // is managed by -[NSApplication run], inner run loops are handled by a loop