HomeSort by: relevance | last modified time | path
    Searched refs:nwatchers (Results 1 - 10 of 10) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
epoll.c 58 events = (struct epoll_event*) loop->watchers[loop->nwatchers];
59 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
151 assert(w->fd < (int) loop->nwatchers);
313 loop->watchers[loop->nwatchers] = x.watchers;
314 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
326 assert((unsigned) fd < loop->nwatchers);
391 loop->watchers[loop->nwatchers] = NULL;
392 loop->watchers[loop->nwatchers + 1] = NULL;
loop.c 63 loop->nwatchers = 0;
131 loop->nwatchers = 0;
154 for (i = 0; i < loop->nwatchers; i++) {
206 loop->nwatchers = 0;
kqueue.c 200 assert(w->fd < (int) loop->nwatchers);
333 loop->watchers[loop->nwatchers] = (void*) events;
334 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
446 loop->watchers[loop->nwatchers] = NULL;
447 loop->watchers[loop->nwatchers + 1] = NULL;
487 events = (struct kevent*) loop->watchers[loop->nwatchers];
488 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
sunos.c 122 events = (struct port_event*) loop->watchers[loop->nwatchers];
123 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
284 loop->watchers[loop->nwatchers] = (void*) events;
285 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
295 assert((unsigned) fd < loop->nwatchers);
335 loop->watchers[loop->nwatchers] = NULL;
336 loop->watchers[loop->nwatchers + 1] = NULL;
aix.c 168 assert(w->fd < (int) loop->nwatchers);
293 loop->watchers[loop->nwatchers] = (void*) events;
294 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
306 assert((unsigned) pc.fd < loop->nwatchers);
345 loop->watchers[loop->nwatchers] = NULL;
346 loop->watchers[loop->nwatchers + 1] = NULL;
1306 events = (struct pollfd*) loop->watchers[loop->nwatchers];
1307 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
os390.c 596 events = (struct epoll_event*) loop->watchers[loop->nwatchers];
597 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
851 assert(w->fd < (int) loop->nwatchers);
961 loop->watchers[loop->nwatchers] = (void*) events;
962 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
979 assert((unsigned) fd < loop->nwatchers);
1029 loop->watchers[loop->nwatchers] = NULL;
1030 loop->watchers[loop->nwatchers + 1] = NULL;
posix-poll.c 167 assert(w->fd < (int) loop->nwatchers);
276 assert((unsigned) fd < loop->nwatchers);
core.c 874 unsigned int nwatchers; local
877 if (len <= loop->nwatchers)
882 fake_watcher_list = loop->watchers[loop->nwatchers];
883 fake_watcher_count = loop->watchers[loop->nwatchers + 1];
889 nwatchers = next_power_of_two(len + 2) - 2;
891 (nwatchers + 2) * sizeof(loop->watchers[0]));
895 for (i = loop->nwatchers; i < nwatchers; i++)
897 watchers[nwatchers] = fake_watcher_list;
898 watchers[nwatchers + 1] = fake_watcher_count
    [all...]
linux.c 1513 assert((unsigned) fd < loop->nwatchers);
  /src/external/mit/libuv/dist/include/uv/
unix.h 226 unsigned int nwatchers; \

Completed in 19 milliseconds