Searched refs:poll (Results 126 - 150 of 242) sorted by relevance

12345678910

/freebsd-9.3-release/sys/dev/netmap/
H A Dnetmap_freebsd.c32 #include <sys/poll.h> /* POLLIN, POLLOUT */
/freebsd-9.3-release/sys/fs/coda/
H A Dcoda_psdev.c67 #include <sys/poll.h>
/freebsd-9.3-release/sys/i386/isa/
H A Dspic.c64 #include <sys/poll.h>
/freebsd-9.3-release/sys/netncp/
H A Dncp_rq.c38 #include <sys/poll.h>
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_dev.c42 #include <sys/poll.h>
/freebsd-9.3-release/sys/x86/acpica/
H A Dacpi_apm.c37 #include <sys/poll.h>
/freebsd-9.3-release/crypto/openssh/
H A Dmux.c57 #include <poll.h>
60 # include <sys/poll.h>
1362 (void)poll(&pfd, 1, -1);
1409 (void)poll(&pfd, 1, -1);
H A Dscp.c82 #include <poll.h>
85 # include <sys/poll.h>
H A Dmonitor.c48 #include <poll.h>
51 # include <sys/poll.h>
552 if (poll(pfd, pfd[1].fd == -1 ? 1 : 2, -1) == -1) {
555 fatal("%s: poll: %s", __func__, strerror(errno));
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c29 #include <poll.h>
798 poll(0, 0, ticks * (1000 / hz));
/freebsd-9.3-release/contrib/ofed/management/libibumad/src/
H A Dumad.c38 #include <sys/poll.h>
830 if ((n = poll(&ufds, 1, timeout_ms)) == 1)
/freebsd-9.3-release/lib/libc/resolv/
H A Dres_send.c115 #include <poll.h>
965 n = poll(&pollfd, 1, polltimeout);
982 Perror(statp, stderr, "poll", errno);
/freebsd-9.3-release/lib/libc/sys/
H A DSymbol.map210 poll;
/freebsd-9.3-release/lib/libusb/
H A Dlibusb20.c30 #include <poll.h>
1015 if (poll(pfd, 1, timeout)) {
/freebsd-9.3-release/sbin/devd/
H A Ddevd.cc83 #include <poll.h>
882 s = poll(&pfd, 1, 0);
963 * poll the existing clients more often, so that we notice more
/freebsd-9.3-release/sys/dev/bktr/
H A Dbktr_os.c69 #include <sys/poll.h>
146 #include <sys/poll.h>
/freebsd-9.3-release/sys/dev/kbdmux/
H A Dkbdmux.c49 #include <sys/poll.h>
362 .poll = kbdmux_poll,
1303 /* set poll on slave keyboards */
/freebsd-9.3-release/sys/dev/vkbd/
H A Dvkbd.c47 #include <sys/poll.h>
271 /* wakeup poll()ers */
534 /* wakeup ks_inq writers/poll()ers */
585 .poll = vkbd_poll,
1247 /* flush ks_inq and wakeup writers/poll()ers */
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Duverbs_main.c42 #include <linux/poll.h>
408 .poll = ib_uverbs_event_poll,
/freebsd-9.3-release/tools/regression/fifo/fifo_io/
H A Dfifo_io.c40 #include <poll.h>
70 * - When a fifo is empty, poll, select, kqueue, and fionread report it is
73 * - When a fifo has data in it, poll, select, and kqueue report that it is
880 if (poll(fds, 1, 0) < 0) {
881 warn("%s: poll", testname);
1067 * test_events() uses poll(), select(), and kevent() to query the status of
1069 * based on earlier semantic tests: specifically, whether or not poll/select/
/freebsd-9.3-release/usr.sbin/faithd/
H A Dfaithd.c53 #include <poll.h>
398 error = poll(pfd, sizeof(pfd)/sizeof(pfd[0]), INFTIM);
/freebsd-9.3-release/usr.sbin/traceroute6/
H A Dtraceroute6.c265 #include <poll.h>
989 if (poll(pfd, 1, waittime * 1000) > 0)
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntpd.c1169 SCMP_SYS(poll),
1204 SCMP_SYS(poll),
H A Drefclock_gpsdjson.c140 # include <sys/poll.h>
144 # error need poll() or select()
269 gpsd_poll, /* transmit poll message */
1964 * socket for writeability. Use the 'poll()' API if available
1976 rc = poll(&pfd, 1, 0);
/freebsd-9.3-release/sys/dev/sio/
H A Dsio.c186 bool_t poll; /* nonzero if polling is required */ member in struct:com_s
1128 com->poll = com->no_irq;
1193 com->poll = FALSE;
2190 if (com->poll || com->poll_output) {
2224 && (com->state >= (CS_BUSY | CS_TTGO) || com->poll)) {

Completed in 318 milliseconds

12345678910