HomeSort by: relevance | last modified time | path
    Searched defs:watchers (Results 1 - 8 of 8) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
poll.c 119 uv__io_t** watchers; local
127 watchers = handle->loop->watchers;
131 if (watchers[w->fd] != w)
epoll.c 55 assert(loop->watchers != NULL);
58 events = (struct epoll_event*) loop->watchers[loop->nwatchers];
59 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
308 uv__io_t* watchers; member in union:__anon23794
312 assert(loop->watchers != NULL);
313 loop->watchers[loop->nwatchers] = x.watchers;
314 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
328 w = loop->watchers[fd];
367 /* Run signal watchers last. This also affects child process watcher
    [all...]
linux-inotify.c 38 QUEUE watchers; member in struct:watcher_list
87 /* Open the inotify_fd, and re-arm all the inotify watchers. */
103 QUEUE_INIT(&tmp_watcher_list.watchers);
112 QUEUE_MOVE(&watcher_list->watchers, &queue);
115 handle = QUEUE_DATA(q, uv_fs_event_t, watchers);
123 QUEUE_INSERT_TAIL(&watcher_list->watchers, q);
126 QUEUE_INSERT_TAIL(&tmp_watcher_list.watchers, &handle->watchers);
133 QUEUE_MOVE(&tmp_watcher_list.watchers, &queue);
137 handle = QUEUE_DATA(q, uv_fs_event_t, watchers);
    [all...]
core.c 871 uv__io_t** watchers; local
880 /* Preserve fake watcher list and count at the end of the watchers */
881 if (loop->watchers != NULL) {
882 fake_watcher_list = loop->watchers[loop->nwatchers];
883 fake_watcher_count = loop->watchers[loop->nwatchers + 1];
890 watchers = uv__reallocf(loop->watchers,
891 (nwatchers + 2) * sizeof(loop->watchers[0]));
893 if (watchers == NULL)
896 watchers[i] = NULL
    [all...]
linux.c 259 struct uv__queue watchers; member in struct:watcher_list
1515 w = loop->watchers[fd];
1558 /* Run signal watchers last. This also affects child process watchers
1559 * because those are implemented in terms of signal watchers.
2515 /* Open the inotify_fd, and re-arm all the inotify watchers. */
2533 uv__queue_init(&tmp_watcher_list.watchers);
2542 uv__queue_move(&watcher_list->watchers, &queue);
2545 handle = uv__queue_data(q, uv_fs_event_t, watchers);
2553 uv__queue_insert_tail(&watcher_list->watchers, q)
    [all...]
  /src/external/gpl2/xcvs/dist/src/
watch.c 1 /* Implementation for "cvs watch add", "cvs watchers", and related commands
495 watchers (int argc, char **argv) function
534 send_to_server ("watchers\012", 0);
edit.c 878 char *watchers; local
929 watchers = fileattr_get0 (filename, "_watchers");
930 p = watchers;
1079 if (watchers != NULL)
1080 free (watchers);
  /src/external/mit/libuv/dist/test/
test-fs-event.c 737 uv_fs_event_t watchers[2]; local
742 timer.data = watchers;
744 ASSERT_OK(uv_fs_event_init(loop, watchers + 0));
745 ASSERT_OK(uv_fs_event_start(watchers + 0, fail_cb, path, 0));
746 ASSERT_OK(uv_fs_event_init(loop, watchers + 1));
747 ASSERT_OK(uv_fs_event_start(watchers + 1, fail_cb, path, 0));

Completed in 28 milliseconds