Lines Matching refs:watchers
283 assert(loop->watchers != NULL);
284 loop->watchers[loop->nwatchers] = (void*) events;
285 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
307 w = loop->watchers[fd];
383 /* Run signal watchers last. This also affects child process watchers
384 * because those are implemented in terms of signal watchers.
411 loop->watchers[loop->nwatchers] = NULL;
412 loop->watchers[loop->nwatchers + 1] = NULL;
449 assert(loop->watchers != NULL);
452 events = (struct kevent*) loop->watchers[loop->nwatchers];
453 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];