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

1234567891011

/freebsd-10.1-release/tools/regression/poll/
H A Dsockpoll.c3 #include <sys/poll.h>
107 if (poll(&pfd0, 1, 0) == -1)
108 err(1, "poll");
110 if (poll(&pfd1, 1, 0) == -1)
111 err(1, "poll");
115 if (poll(&pfd0, 1, 0) == -1)
116 err(1, "poll");
118 if (poll(&pfd1, 1, 0) == -1)
119 err(1, "poll");
122 if (poll(
[all...]
H A Dpipepoll.c3 #include <sys/poll.h>
64 printf("poll result %d expected %d. ",
105 if ((res = poll(&pfd, 1, 0)) < 0)
106 err(1, "poll");
123 if ((res = poll(&pfd, 1, 0)) < 0)
124 err(1, "poll");
131 if ((res = poll(&pfd, 1, 0)) < 0)
132 err(1, "poll");
136 if ((res = poll(&pfd, 1, 0)) < 0)
137 err(1, "poll");
[all...]
/freebsd-10.1-release/lib/libkse/thread/
H A Dthr_poll.c39 #include <poll.h>
49 __weak_reference(__poll, poll);
H A Dthr_select.c35 #include <poll.h>
/freebsd-10.1-release/sys/dev/random/
H A Drandomdev.h52 random_poll_func_t *poll; member in struct:random_adaptor
/freebsd-10.1-release/sys/ofed/include/linux/
H A Dpoll.h33 #include <sys/poll.h>
/freebsd-10.1-release/contrib/apr/
H A Dbuild.conf17 dso file_io locks memory misc mmap network_io poll random
/freebsd-10.1-release/contrib/netcat/
H A Datomicio.c30 #include <poll.h>
55 (void)poll(&pfd, 1, -1);
/freebsd-10.1-release/crypto/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);
/freebsd-10.1-release/sbin/dhclient/
H A Dprivsep.h23 #include <poll.h>
/freebsd-10.1-release/contrib/apr/support/unix/
H A Dwaitio.c34 #include <poll.h>
37 #include <sys/poll.h>
51 rc = poll(&pfd, 1, timeout);
/freebsd-10.1-release/contrib/apr/include/arch/unix/
H A Dapr_arch_poll_private.h21 #include <poll.h>
25 #include <sys/poll.h>
162 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
171 apr_status_t (*poll)(apr_pollcb_t *, apr_interval_time_t, apr_pollcb_cb_t, void *); member in struct:apr_pollcb_provider_t
/freebsd-10.1-release/crypto/openssh/
H A Datomicio.c36 #include <poll.h>
39 # include <sys/poll.h>
71 (void)poll(&pfd, 1, -1);
128 (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);
/freebsd-10.1-release/sys/mips/cavium/octe/
H A Dcavium-ethernet.h59 void (*poll)(struct ifnet *ifp); /* Called periodically to check link status */ member in struct:__anon10254
/freebsd-10.1-release/sys/sys/
H A Dpoll.h37 * This file is intended to be compatible with the traditional poll.h.
43 * This structure is passed as an array to poll(2).
46 int fd; /* which file descriptor to poll */
52 * Requestable events. If poll(2) finds any of these set, they are
58 * POLLIN includes all of normal, band and urgent data. Most poll handlers
78 #define POLLERR 0x0008 /* some poll error occurred */
88 * Request that poll() wait forever.
90 * by poll.h.
99 int poll(struct pollfd _pfd[], nfds_t _nfds, int _timeout);
/freebsd-10.1-release/usr.sbin/ftp-proxy/libevent/
H A DMakefile8 SRCS= buffer.c evbuffer.c event.c kqueue.c log.c poll.c select.c signal.c
/freebsd-10.1-release/usr.sbin/fifolog/fifolog_writer/
H A Dfifolog_writer.c36 #include <poll.h>
99 i = poll(pfd, 1, 1000);
/freebsd-10.1-release/crypto/heimdal/lib/ipc/
H A Dhi_locl.h44 #include <sys/poll.h>
/freebsd-10.1-release/lib/libnetgraph/
H A Dinternal.h47 #include <poll.h>
/freebsd-10.1-release/sys/boot/userboot/userboot/
H A Duserboot_cons.c129 return (CALLBACK(poll));
/freebsd-10.1-release/tools/regression/netinet/tcpfullwindowrst/
H A Dtcpfullwindowrsttest.c35 #include <poll.h>
106 if (poll(pfd, 2, 1000) == 0) {
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Dfilter_fork_posix.c46 # include <poll.h>
48 # include <sys/poll.h>
217 poll(fds, idx, -1); /* -1 == INFTIM, wait forever */
/freebsd-10.1-release/contrib/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>
/freebsd-10.1-release/contrib/bmake/
H A Djob.h87 * Emulate poll() in terms of select(). This is not a complete
91 #define poll emul_poll macro
109 * in poll before coming out to see if a child has finished.

Completed in 388 milliseconds

1234567891011