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

  /src/external/mit/libuv/dist/include/uv/
linux.h 31 struct uv__queue watchers; \
unix.h 225 uv__io_t** watchers; \
  /src/external/mit/libuv/dist/src/unix/
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...]
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...]
poll.c 119 uv__io_t** watchers; local
127 watchers = handle->loop->watchers;
131 if (watchers[w->fd] != w)
loop.c 62 loop->watchers = NULL;
130 uv__free(loop->watchers);
153 /* Rearm all the watchers that aren't re-queued by the above. */
155 w = loop->watchers[i];
204 uv__free(loop->watchers);
205 loop->watchers = NULL;
sunos.c 119 assert(loop->watchers != NULL);
122 events = (struct port_event*) loop->watchers[loop->nwatchers];
123 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
283 assert(loop->watchers != NULL);
284 loop->watchers[loop->nwatchers] = (void*) events;
285 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
297 w = loop->watchers[fd];
303 /* Run signal watchers last. This also affects child process watchers
304 * because those are implemented in terms of signal watchers
    [all...]
kqueue.c 332 assert(loop->watchers != NULL);
333 loop->watchers[loop->nwatchers] = (void*) events;
334 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
356 w = loop->watchers[fd];
416 /* Run signal watchers last. This also affects child process watchers
417 * because those are implemented in terms of signal watchers.
446 loop->watchers[loop->nwatchers] = NULL;
447 loop->watchers[loop->nwatchers + 1] = NULL;
484 assert(loop->watchers != NULL)
    [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...]
aix.c 292 assert(loop->watchers != NULL);
293 loop->watchers[loop->nwatchers] = (void*) events;
294 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
308 w = loop->watchers[pc.fd];
320 /* Run signal watchers last. This also affects child process watchers
321 * because those are implemented in terms of signal watchers.
345 loop->watchers[loop->nwatchers] = NULL;
346 loop->watchers[loop->nwatchers + 1] = NULL;
1303 assert(loop->watchers != NULL)
    [all...]
os390.c 593 assert(loop->watchers != NULL);
596 events = (struct epoll_event*) loop->watchers[loop->nwatchers];
597 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
960 assert(loop->watchers != NULL);
961 loop->watchers[loop->nwatchers] = (void*) events;
962 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
981 w = loop->watchers[fd];
1004 /* Run signal watchers last. This also affects child process watchers
1005 * because those are implemented in terms of signal watchers
    [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...]
posix-poll.c 158 /* Take queued watchers and add their fds to our poll fds array. */
278 w = loop->watchers[fd];
292 /* Run signal watchers last. */
  /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));
  /src/external/gpl2/xcvs/dist/src/
edit.c 878 char *watchers; local
929 watchers = fileattr_get0 (filename, "_watchers");
930 p = watchers;
1079 if (watchers != NULL)
1080 free (watchers);
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);
cvs.h 894 int watchers (int argc, char **argv);
main.c 187 { "watchers", NULL, NULL, watchers, CVS_CMD_USES_WORK_DIR },
282 " watchers See who is watching a file\n",
server.c 4763 do_cvs_command ("watchers", watchers);
5989 REQ_LINE("watchers", serve_watchers, 0),
sanity.sh 16599 dotest devcom-24 "$testcvs watchers" ''
16603 dotest devcom-a-nonexist "$testcvs watchers nonexist" ''
16606 dotest devcom-a2 "$testcvs watchers" \
16610 dotest devcom-a4 "$testcvs watchers abb" \
16624 # cvs watchers: cannot open CVS/Entries for reading: No such file or directory
16626 : dotest devcom-t-nonexist "${testcvs} watchers nonexist" fixme
16877 dotest devcom3-9hp "$testcvs watchers w1"
16881 dotest devcom3-9fr "$testcvs watchers w1" \
16885 dotest devcom3-9hr "$testcvs watchers w1"
31032 # The "watchers" request selects the files to operate base
    [all...]

Completed in 42 milliseconds