Lines Matching refs:events
90 int events;
153 struct uv__queue events; \
158 /* Split-off all events and empty original queue */ \
159 uv__queue_move(&(handle)->cf_events, &events); \
164 /* Loop through events, deallocating each after processing */ \
165 while (!uv__queue_empty(&events)) { \
166 q = uv__queue_head(&events); \
182 /* Runs in UV loop's thread, when there're events to report to handle */
189 handle->cb(handle, event->path[0] ? event->path : NULL, event->events, 0);
196 struct uv__queue* events,
198 assert(events != NULL || err != 0);
202 if (events != NULL)
203 uv__queue_add(&handle->cf_events, events);
214 /* Runs in CF thread, when there're events in FSEventStream */
245 /* Process and filter out events */
249 /* Ignore system events */
279 /* Ignore events with path equal to directory itself */
300 /* Do not emit events from subdirectories (without option set) */
313 event->events = UV_RENAME;
318 event->events = UV_CHANGE;
347 * 1. NoDefer - without this flag, events that are happening continuously
351 * will stop (i.e. there'll be delay between events, bigger than
392 /* Stop emitting events */