HomeSort by relevance Sort by last modified time
    Searched refs:kqueue (Results 1 - 7 of 7) sorted by null

  /external/dbus/bus/
dir-watch-kqueue.c 2 /* dir-watch-kqueue.c OS specific directory change notification for message bus
88 _dbus_verbose ("Sending SIGHUP signal since kqueue has been closed\n");
103 kq = kqueue ();
106 _dbus_warn ("Cannot create kqueue; error '%s'\n", _dbus_strerror (errno));
117 _dbus_warn ("Unable to create kqueue watch\n");
  /external/chromium/third_party/libevent/
kqueue.c 1 /* $OpenBSD: kqueue.c,v 1.5 2002/07/10 14:41:31 art Exp $ */
89 "kqueue",
104 /* Disable kqueue when this environment variable is set */
113 if ((kq = kqueue()) == -1) {
114 event_warn("kqueue");
142 /* Check for Mac OS X kqueue bug. */
147 * If kqueue works, then kevent will succeed, and it will
148 * stick an error in events[0]. If kqueue is broken, then
155 event_warn("%s: detected broken kqueue; not using.", __func__);
configure     [all...]
  /external/chromium/base/files/
file_path_watcher_mac.cc 23 // Mac-specific file watcher implementation based on kqueue.
38 // The kqueue implementation will handle all of the items in the list above
298 // Iterate over events adding kevents for items that exist to the kqueue.
432 kqueue_ = kqueue();
434 PLOG(ERROR) << "kqueue";
  /external/valgrind/main/coregrind/m_syswrap/
priv_syswrap-darwin.h 426 DECL_TEMPLATE(darwin, kqueue); // 362
syswrap-darwin.c     [all...]
  /external/chromium/base/
process_util_posix.cc 775 // Using kqueue on Mac so that we can wait on non-child processes.
780 int kq = kqueue();
782 PLOG(ERROR) << "kqueue";

Completed in 1298 milliseconds