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

1234567

/macosx-10.9.5/cups-372.4/cups/backend/
H A Ddnssd.c97 static int got_data = 0; /* Got data from poll? */
335 fputs("DEBUG: Unable to create Avahi simple poll object.\n", stderr);
977 val = poll(pollfds, num_pollfds, 500);
/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_proc.c474 (void) poll(NULL, 0, MILLISEC / 2);
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Dutil.c1336 * a poll(2).
1423 /* loop until poll ! EINTR */
1426 if (rv == 0) { /* poll (connect) timed out */
1431 if (rv == -1) { /* poll error */
1470 * Internal version of poll(2), to allow reimplementation by select(2)
1477 return poll(fds, nfds, timeout);
1480 /* implement poll(2) using select(2) */
1510 } else if (timeout == 0) { /* poll once */
/macosx-10.9.5/uucp-11/uucp/contrib/
H A Dxchat.c1253 * We need to pass an unused pollfd structure because poll checks
1256 poll (&sdummy, 0, msec);
/macosx-10.9.5/vim-53/src/
H A Dif_sniff.c972 if (poll(&fds, 1, 0) > 0)
H A Dif_xcmdsrv.c605 if (poll(&fds, 1, SEND_MSEC_POLL) < 0)
H A Dos_unix.c666 poll(NULL, 0, (int)msec);
4935 ret = poll(fds, nfd, towait);
/macosx-10.9.5/xnu-2422.115.4/bsd/security/audit/
H A Daudit_pipe.c36 #include <sys/poll.h>
1044 * Audit pipe poll.
H A Daudit_session.c36 #include <sys/poll.h>
1949 * Audit session device poll method.
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dcodemirror.js166 d.poll = new Delayed();
1364 cm.display.poll.set(cm.options.pollInterval, function() {
1375 if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);}
1378 cm.display.poll.set(20, p);
1487 // Here we poll to unregister it when the editor is no longer in
2066 var poll = function(){
2069 else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500);
2072 detectingSelectAll = setTimeout(poll, 200);
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap-linux.c138 #include <poll.h>
1392 * "handle->fd" is a socket, so "select()" and "poll()"
3809 timeout = 0; /* non-blocking mode - poll to pick up errors */
3811 ret = poll(&pollinfo, 1, timeout);
3814 "can't poll on packet socket: %s",
/macosx-10.9.5/network_cmds-433/ping6.tproj/
H A Dping6.c149 #include <poll.h>
1282 cc = poll(fdmaskp, 1, timeout);
1291 warn("poll");
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dsys_generic.c93 #include <sys/poll.h>
1195 * To effect a poll, the timeout argument should be
1384 poll(struct proc *p, struct poll_args *uap, int32_t *retval) function
1461 /* convert the poll event into a kqueue kevent */
1521 /* poll is not restarted after signals... */
2391 * or without or poll mode
2412 * check for fast poll method
2424 * poll failed
2495 *retval = 1; // poll failed
/macosx-10.9.5/xnu-2422.115.4/tools/tests/kqueue_tests/
H A Dkqueue_file_tests.c10 #include <poll.h>
67 /* Test kevent() or poll() */
85 /* Different parameters for poll() vs kevent() */
454 cnt = poll(&pl, 1, WAIT_TIME);
455 LOG(1, stderr, "Finished poll() call.\n");
572 * Same as above, but for a poll() test
1508 init_poll_test(&test, "10.1.1: does poll say I can write a regular file?", FILE1, 1, 1, POLLWRNORM, 1);
1514 init_poll_test(&test, "10.1.2: does poll say I can write an empty FIFO?", FILE1, 1, 1, POLLWRNORM, 1);
1521 init_poll_test(&test, "10.1.3: does poll say I can read a nonempty FIFO?", FILE1, 1, 1, POLLRDNORM, 1);
1529 init_poll_test(&test, "10.1.4: does poll sa
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/ipc/
H A Dserver.c1346 poll(fds, num_fds, -1);
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dhttp.c35 # include <poll.h>
3280 int nfds; /* Result from select()/poll() */
3326 * Then try doing a select() or poll() to poll the socket...
3335 nfds = poll(&pfd, 1, msec);
5657 int nfds; /* Result from select()/poll() */
5665 while ((nfds = poll(&pfd, 1, http->wait_value)) < 0 &&
/macosx-10.9.5/lukemftp-13.92.1/tnftp/
H A Dconfigure3968 # include <poll.h>
3970 # include <sys/poll.h>
5177 paths.h poll.h pwd.h sys/poll.h regex.h \
9310 # Handle Darwin 7 having a poll() compatibility function,
9312 # Be conservative, if we don't find one of poll.h or sys/poll.h,
9313 # don't attempt to use poll().
9378 { echo "$as_me:$LINENO: checking for poll" >&5
9379 echo $ECHO_N "checking for poll
[all...]
/macosx-10.9.5/cups-372.4/cups/test/
H A Dippfind.c159 static int avahi_got_data = 0; /* Got data from poll? */
2503 val = poll(pollfds, num_pollfds, 500);
H A Dippserver.c101 #include <poll.h>
4732 struct pollfd polldata[3]; /* poll() data */
4733 int timeout; /* Timeout for poll() */
4738 * Setup poll() data for the Bonjour service socket and IPv4/6 listeners...
4765 if (poll(polldata, num_fds, timeout) < 0 && errno != EINTR)
4767 perror("poll() failed");
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tty/
H A Dtty_update.c324 if (poll(fds, 1, 0) > 0) {
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dconfigure15611 # Check for select and/or poll. If both exist, we prefer select.
15615 poll=0
15702 { echo "$as_me:$LINENO: checking for poll" >&5
15703 echo $ECHO_N "checking for poll... $ECHO_C" >&6; }
15713 /* Define poll to an innocuous variant, in case <limits.h> declares poll.
15715 #define poll innocuous_poll
15718 which can conflict with char poll (); below.
15728 #undef poll
15736 char poll ();
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dbpf.c100 #include <sys/poll.h>
876 * or poll()) and has expired and a packet(s)
/macosx-10.9.5/curl-78.94.1/curl/
H A Dconfigure25980 sys/poll.h \
25981 poll.h \
27094 # include <poll.h>
27097 # include <sys/poll.h>
27100 for ac_header in sys/types.h poll.h sys/poll.h
34277 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if poll can be linked" >&5
34278 $as_echo_n "checking if poll can be linked... " >&6; }
34288 if(0 != poll(0, 0, 0))
34313 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if poll i
[all...]
/macosx-10.9.5/uucp-11/uucp/
H A Dconfigure2094 for ac_hdr in sysexits.h poll.h tiuser.h xti.h sys/tli.h stropts.h ftw.h
4003 for ac_func in napms nap usleep poll select
/macosx-10.9.5/ntp-88/ntpd/
H A Dntp_request.c1107 is->poll = sys_poll;

Completed in 500 milliseconds

1234567