Searched refs:poll (Results 26 - 50 of 242) sorted by relevance

12345678910

/freebsd-9.3-release/usr.sbin/ntp/libntpevent/
H A DMakefile11 evutil_rand.c evutil_time.c http.c kqueue.c listener.c log.c poll.c \
/freebsd-9.3-release/sys/dev/random/
H A Drandomdev.c43 #include <sys/poll.h>
178 revents = (*random_systat.poll) (events,td);
/freebsd-9.3-release/crypto/openssl/crypto/rand/
H A Drand_unix.c130 # include <poll.h>
223 /* use poll() */
230 if (poll(&pset, 1, usec / 1000) < 0)
/freebsd-9.3-release/contrib/ofed/management/libibcommon/src/
H A Dstack.c55 #include <sys/poll.h>
H A Dutil.c55 #include <sys/poll.h>
/freebsd-9.3-release/sys/contrib/rdma/krping/
H A Dkrping.h108 int poll; /* poll vs block in rlat */ member in struct:krping_cb
/freebsd-9.3-release/sys/fs/deadfs/
H A Ddead_vnops.c38 #include <sys/poll.h>
167 * Trivial poll routine that always returns POLLHUP.
/freebsd-9.3-release/contrib/sendmail/libmilter/
H A Dlibmilter.h171 # include <poll.h>
172 # define MI_POLLSELECT "poll"
201 poll(&(wrs), 1, MI_MS(timeout))
204 poll(&(rds), 1, MI_MS(timeout))
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-pgm.c292 struct pgm_poll *poll; local
294 poll = (struct pgm_poll *)(pgm + 1);
295 TCHECK(*poll);
297 EXTRACT_32BITS(&poll->pgmp_seq),
298 EXTRACT_16BITS(&poll->pgmp_round));
299 bp = (u_char *) (poll + 1);
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_ttyconv.c43 #include <sys/poll.h>
157 if ((ret = poll(&pfd, 1, remaining_ms)) < 0) {
161 openpam_log(PAM_LOG_ERROR, "poll(): %m");
255 if ((ret = poll(&pfd, 1, remaining_ms)) < 0) {
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-poll.c1 /* $Id: bsd-poll.c,v 1.6 2014/02/05 23:44:13 dtucker Exp $ */
31 #include "bsd-poll.h"
34 * A minimal implementation of poll(2), built on top of select(2).
43 poll(struct pollfd *fds, nfds_t nfds, int timeout) function
84 /* poll timeout is msec, select is timeval (sec + usec) */
94 /* scan through select results and set poll() flags */
/freebsd-9.3-release/sys/dev/usb/
H A Dusb_dev.h32 #include <sys/poll.h>
/freebsd-9.3-release/usr.sbin/ntp/doc/
H A DMakefile20 parsenew.html poll.html pps.html prefer.html quick.html rate.html \
/freebsd-9.3-release/contrib/ntp/scripts/lib/NTP/
H A DUtil.pm103 my @columns = qw(tally host refid st t when poll reach delay offset jitter);
/freebsd-9.3-release/contrib/libpcap/tests/
H A Dselpolltest.c37 #include <poll.h>
108 fprintf(stderr, "selpolltest: choose select (-s) or poll (-p), but not both\n");
112 fprintf(stderr, "selpolltest: timeout (-t) requires select (-s) or poll (-p)\n");
200 status = poll(&fd, 1, polltimeout);
231 printf("%d packets seen, %d packets counted after poll returns\n",
H A Dnonblocktest.c37 #include <poll.h>
/freebsd-9.3-release/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.cc40 #include <poll.h>
355 if (poll(__pfd, 1, 0) <= 0)
/freebsd-9.3-release/lib/libc/sys/
H A DMakefile.inc103 pathconf.2 pdfork.2 pipe.2 poll.2 posix_fadvise.2 posix_fallocate.2 \
/freebsd-9.3-release/sys/kern/
H A Dcapabilities.conf465 ## Allow poll(2), which will be scoped by capability rights.
486 ## Allow poll(2), which will be scoped by capability rights.
489 poll
/freebsd-9.3-release/sys/mips/cavium/octe/
H A Dethernet-common.c237 * If there is a device-specific poll method, use it.
239 if (priv->poll != NULL) {
240 priv->poll(ifp);
/freebsd-9.3-release/sys/pci/
H A Dintpm.c57 int poll; member in struct:intsmb_softc
156 sc->poll = (value & PCI_INTR_SMB_ENABLE) == 0;
173 sc->poll == 0 ? "enabled" : "disabled");
176 if (!sc->poll && intr == PCI_INTR_SMB_SMI) {
179 sc->poll = 1;
182 if (sc->poll)
406 if (!sc->poll && !cold && !nointr)
477 if (sc->poll || cold)
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dpoll.c1 /* $OpenBSD: poll.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */
39 #include <poll.h>
76 "poll",
171 res = poll(event_set, nfds, msec);
177 event_warn("poll");
184 event_debug(("%s: poll reports %d", __func__, res));
/freebsd-9.3-release/sys/powerpc/powermac/
H A Dcuda.c71 u_char *data, u_char poll);
356 cuda_send(void *cookie, int poll, int length, uint8_t *msg) argument
393 if (sc->sc_polling || poll || cold)
704 u_char poll)
716 cuda_send(sc, poll, len + 2, packet);
703 cuda_adb_send(device_t dev, u_char command_byte, int len, u_char *data, u_char poll) argument
/freebsd-9.3-release/usr.sbin/rtadvd/
H A Dcontrol.c44 #include <poll.h>
78 i = poll(pfds, sizeof(pfds)/sizeof(pfds[0]),
85 syslog(LOG_ERR, "<%s> poll error: %s",
134 i = poll(pfds, sizeof(pfds)/sizeof(pfds[0]),
141 syslog(LOG_ERR, "<%s> poll error: %s",
/freebsd-9.3-release/contrib/gdb/gdb/
H A Devent-loop.c28 #include <poll.h>
30 #include <sys/poll.h>
126 /* Do we use poll or select ? */
144 /* Timeout in milliseconds for calls to poll(). */
155 /* Number of file descriptors to monitor. (for poll) */
433 doesn't have to know implementation details about the use of poll
445 /* Check to see if poll () is usable. If not, we'll switch to
447 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
449 `poll'able. */
452 if (poll (
[all...]

Completed in 318 milliseconds

12345678910