Lines Matching refs:watchers
305 assert(loop->watchers != NULL);
306 loop->watchers[loop->nwatchers] = (void*) events;
307 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
329 w = loop->watchers[fd];
378 /* Run signal watchers last. This also affects child process watchers
379 * because those are implemented in terms of signal watchers.
408 loop->watchers[loop->nwatchers] = NULL;
409 loop->watchers[loop->nwatchers + 1] = NULL;
446 assert(loop->watchers != NULL);
449 events = (struct kevent*) loop->watchers[loop->nwatchers];
450 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];