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

1 2 3

  /prebuilts/go/darwin-x86/src/runtime/
netpoll_kqueue.go 9 // Integrated network poller (kqueue-based implementation).
13 func kqueue() int32 func
24 kq = kqueue()
26 println("netpollinit: kqueue failed with", -kq)
27 throw("netpollinit: kqueue failed")
netpoll.go 15 // A particular implementation (epoll/kqueue) must define the following functions:
73 // because we can get ready notification from epoll/kqueue
441 // only from epoll/kqueue internals.
sys_dragonfly_amd64.s 332 // int32 runtime·kqueue(void);
333 TEXT runtime·kqueue(SB),NOSPLIT,$0
sys_freebsd_386.s 370 // int32 runtime·kqueue(void);
371 TEXT runtime·kqueue(SB),NOSPLIT,$0
sys_freebsd_amd64.s 322 // int32 runtime·kqueue(void);
323 TEXT runtime·kqueue(SB),NOSPLIT,$0
  /prebuilts/go/linux-x86/src/runtime/
netpoll_kqueue.go 9 // Integrated network poller (kqueue-based implementation).
13 func kqueue() int32 func
24 kq = kqueue()
26 println("netpollinit: kqueue failed with", -kq)
27 throw("netpollinit: kqueue failed")
netpoll.go 15 // A particular implementation (epoll/kqueue) must define the following functions:
73 // because we can get ready notification from epoll/kqueue
441 // only from epoll/kqueue internals.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_kqueue.py 2 Tests for kqueue wrapper.
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
104 kq = select.kqueue()
105 kq2 = select.kqueue.fromfd(kq.fileno())
177 kq = select.kqueue()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_kqueue.py 2 Tests for kqueue wrapper.
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
99 kq = select.kqueue()
100 kq2 = select.kqueue.fromfd(kq.fileno())
168 kq = select.kqueue()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_kqueue.py 2 Tests for kqueue wrapper.
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
99 kq = select.kqueue()
100 kq2 = select.kqueue.fromfd(kq.fileno())
168 kq = select.kqueue()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 2 Tests for kqueue wrapper.
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
99 kq = select.kqueue()
100 kq2 = select.kqueue.fromfd(kq.fileno())
168 kq = select.kqueue()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 2 Tests for kqueue wrapper.
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
99 kq = select.kqueue()
100 kq2 = select.kqueue.fromfd(kq.fileno())
168 kq = select.kqueue()
  /prebuilts/go/darwin-x86/src/syscall/
types_darwin.go 187 // Events (kqueue, kevent)
types_dragonfly.go 186 // Events (kqueue, kevent)
types_netbsd.go 171 // Events (kqueue, kevent)
types_openbsd.go 187 // Events (kqueue, kevent)
  /prebuilts/go/linux-x86/src/syscall/
types_darwin.go 187 // Events (kqueue, kevent)
types_dragonfly.go 186 // Events (kqueue, kevent)
types_netbsd.go 171 // Events (kqueue, kevent)
types_openbsd.go 187 // Events (kqueue, kevent)
  /external/libchrome/base/process/
process_posix.cc 90 // Using kqueue on Mac so that we can wait on non-child processes.
98 base::ScopedFD kq(kqueue());
100 DPLOG(ERROR) << "kqueue";
  /external/libchrome/base/files/
file_path_watcher_kqueue.cc 193 // Iterate over events adding kevents for items that exist to the kqueue.
323 // Recursive watch is not supported using kqueue.
334 kqueue_ = kqueue();
336 DPLOG(ERROR) << "kqueue";
380 DPLOG(ERROR) << "close kqueue";
  /external/libevent/
kqueue.c 1 /* $OpenBSD: kqueue.c,v 1.5 2002/07/10 14:41:31 art Exp $ */
88 "kqueue",
122 if ((kq = kqueue()) == -1) {
123 event_warn("kqueue");
140 /* Check for Mac OS X kqueue bug. */
146 * If kqueue works, then kevent will succeed, and it will
147 * stick an error in events[0]. If kqueue is broken, then
154 event_warn("%s: detected broken kqueue; not using.", __func__);
  /external/wpa_supplicant_8/src/utils/
eloop.c 22 #error Do not define both of poll and kqueue
174 eloop.kqueuefd = kqueue();
176 wpa_printf(MSG_ERROR, "%s: kqueue failed: %s",
337 "%s: malloc for kqueue failed: %s",
670 eloop.kqueuefd = kqueue();
672 wpa_printf(MSG_ERROR, "%s: kqueue failed: %s",
1166 "kqueue"
1333 kfd = kqueue();
    [all...]
  /external/dhcpcd-6.8.2/
configure 831 printf "Testing for kqueue ... "
836 return kqueue();
840 POLL=kqueue
915 kqueue)

Completed in 437 milliseconds

1 2 3