Searched refs:poll (Results 1 - 25 of 155) sorted by relevance

1234567

/macosx-10.10.1/Libc-1044.1.2/include/
H A Dpoll.h23 #include <sys/poll.h>
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/libusb/os/
H A Dpoll_posix.h8 #define usbi_poll poll
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_sleep.c29 # include <sys/poll.h>
31 # include <poll.h>
49 poll((void *)0, 0, (int)ms);
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dpoll.h61 * This file is intended to be compatible with the traditional poll.h.
65 * Requestable events. If poll(2) finds any of these set, they are
89 #define POLLERR 0x0008 /* some poll error occurred */
112 * This is defined here (instead of <poll.h>) because this is where
115 extern int poll (struct pollfd *, nfds_t, int) __DARWIN_ALIAS_C(poll); variable
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dusleep.c45 return (poll(NULL, 0, usec / 1000));
/macosx-10.10.1/apr-32/apr/apr/
H A Dbuild.conf16 dso file_io locks memory misc mmap network_io poll random
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-poll.h1 /* $OpenBSD: poll.h,v 1.11 2003/12/10 23:10:08 millert Exp $ */
28 /* OPENBSD ORIGINAL: sys/sys/poll.h */
59 int poll(struct pollfd *, nfds_t, int);
/macosx-10.10.1/apr-32/apr/apr/support/unix/
H A Dwaitio.c34 #include <poll.h>
37 #include <sys/poll.h>
51 rc = poll(&pfd, 1, timeout);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Datomicio.c36 #include <poll.h>
39 # include <sys/poll.h>
68 (void)poll(&pfd, 1, -1);
124 (void)poll(&pfd, 1, -1);
H A Dmonitor_fdpass.c38 #include <poll.h>
87 (void)poll(&pfd, 1, -1);
143 (void)poll(&pfd, 1, -1);
/macosx-10.10.1/apr-32/apr/apr/include/arch/unix/
H A Dapr_arch_poll_private.h21 #include <poll.h>
25 #include <sys/poll.h>
153 apr_status_t (*poll)(apr_pollset_t *, apr_interval_time_t, apr_int32_t *, const apr_pollfd_t **); member in struct:apr_pollset_provider_t
162 apr_status_t (*poll)(apr_pollcb_t *, apr_interval_time_t, apr_pollcb_cb_t, void *); member in struct:apr_pollcb_provider_t
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dselect.h28 #include <sys/poll.h>
30 #include <poll.h>
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dpause.c10 above napms above poll above select above nap. The nap function is
47 #include <poll.h>
84 /* We need to pass an unused pollfd structure because poll checks
87 poll (&sdummy, 0, 500);
/macosx-10.10.1/vim-55/src/auto/
H A Dosdef.h33 struct pollfd; /* for poll __ARGS */
34 extern int poll __ARGS((struct pollfd *, long, int));
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Dfilter_fork.c36 # include <poll.h>
38 # include <sys/poll.h>
140 poll(fds, idx, -1); /* -1 == INFTIM, wait forever */
/macosx-10.10.1/cups-408/cups/cups/
H A Dtls.c36 # include <poll.h>
H A Dsidechannel.c34 # include <poll.h>
114 struct pollfd pfd; /* Poll structure for poll() */
140 while ((nfds = poll(&pfd, 1,
537 struct pollfd pfd; /* Poll structure for poll() */
562 if (poll(&pfd, 1, -1) < 1)
565 else if (poll(&pfd, 1, (int)(timeout * 1000)) < 1)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/tm/
H A Dtvsleep.c42 # include <poll.h>
120 poll(&pfd, 0, t);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/
H A Dcurses.priv.h102 /* Some systems have a broken 'select()', but workable 'poll()'. Use that */
106 #include <poll.h>
108 #include <sys/poll.h>
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dpoll_fd.c57 /* value effects a poll (return immediately). A negative value
103 * Use poll() with fall-back to select(). MacOSX needs this for devices.
119 * Use poll() only.
132 #include <poll.h>
224 msg_fatal("poll: %m")
235 * System-V poll() is optimal for polling a few descriptors.
249 switch (poll(&pollfd, 1, time_limit < 0 ?
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A DMakefile.benchmarks82 poll \
H A Dpoll.c38 #include <poll.h>
72 "notes: measures poll()\n",
195 if (poll(ts->ts_pfds, optn, 0) != target) {
/macosx-10.10.1/Heimdal-398.1.2/lib/ipc/
H A Dhi_locl.h48 #include <sys/poll.h>
/macosx-10.10.1/curl-83.1.2/curl/include/curl/
H A Dcurlbuild.h156 /* header file sys/poll.h must be included by the external interface. */
159 # include <sys/poll.h>
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drand_unix.c129 # include <poll.h>
215 /* use poll() */
222 if (poll(&pset, 1, usec / 1000) < 0)

Completed in 303 milliseconds

1234567