Lines Matching refs:events
90 int events;
155 QUEUE events; \
160 /* Split-off all events and empty original queue */ \
161 QUEUE_MOVE(&(handle)->cf_events, &events); \
166 /* Loop through events, deallocating each after processing */ \
167 while (!QUEUE_EMPTY(&events)) { \
168 q = QUEUE_HEAD(&events); \
184 /* Runs in UV loop's thread, when there're events to report to handle */
191 handle->cb(handle, event->path[0] ? event->path : NULL, event->events, 0);
198 QUEUE* events,
200 assert(events != NULL || err != 0);
204 if (events != NULL)
205 QUEUE_ADD(&handle->cf_events, events);
216 /* Runs in CF thread, when there're events in FSEventStream */
247 /* Process and filter out events */
251 /* Ignore system events */
281 /* Ignore events with path equal to directory itself */
302 /* Do not emit events from subdirectories (without option set) */
315 event->events = UV_RENAME;
320 event->events = UV_CHANGE;
348 * 1. NoDefer - without this flag, events that are happening continuously
352 * will stop (i.e. there'll be delay between events, bigger than
400 /* Stop emitting events */