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

1234567

/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dsocket.c44 * We use poll() in preference to select because some subset of manuals says
46 * have access to a system with poll but not select, however, though
50 # include <poll.h>
162 if ((ret = poll(&pfd, 1, 0)) == 0) return 1;
165 zwarnnam(nam, "poll error: %e", errno);
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dfetchmail.vim27 \ start='\<poll\|skip\|defaults\>'
28 \ end='\<poll\|skip\|defaults\>'
/macosx-10.10.1/curl-83.1.2/curl/tests/server/
H A Dutil.c38 #include <sys/poll.h>
40 #include <poll.h>
230 r = poll(NULL, 0, pending_ms);
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dconnection.c44 #include <sys/poll.h>
252 if (poll(&pollfd, 1, -1) == 1)
273 if (poll(&pollfd, 1, -1) != 1)
/macosx-10.10.1/cups-408/cups/cups/
H A Dhttp-support.c28 # include <poll.h>
46 AvahiSimplePoll *poll; /* Poll state */ member in struct:_http_uribuf_s
1744 fds = poll(&polldata, 1, (int)(1000 * timeout));
1765 DEBUG_printf(("5_httpResolveURI: poll error: %s", strerror(errno)));
1858 if ((uribuf.poll = avahi_simple_poll_new()) != NULL)
1860 avahi_simple_poll_set_func(uribuf.poll, http_poll_cb, NULL);
1862 if ((client = avahi_client_new(avahi_simple_poll_get(uribuf.poll),
1877 pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000);
1895 if ((pstatus = avahi_simple_poll_iterate(uribuf.poll, 2000)) != 0)
1922 avahi_simple_poll_free(uribuf.poll);
[all...]
/macosx-10.10.1/apr-32/apr/apr/
H A Dbuild-outputs.mk81 poll/unix/epoll.lo: poll/unix/epoll.c .make.dirs include/apr_allocator.h include/apr_dso.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_global_mutex.h include/apr_inherit.h include/apr_network_io.h include/apr_poll.h include/apr_pools.h include/apr_portable.h include/apr_proc_mutex.h include/apr_shm.h include/apr_tables.h include/apr_thread_mutex.h include/apr_thread_proc.h include/apr_time.h include/apr_user.h include/apr_want.h
82 poll/unix/kqueue.lo: poll/unix/kqueue.c .make.dirs include/apr_allocator.h include/apr_dso.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_global_mutex.h include/apr_inherit.h include/apr_network_io.h include/apr_poll.h include/apr_pools.h include/apr_portable.h include/apr_proc_mutex.h include/apr_shm.h include/apr_tables.h include/apr_thread_mutex.h include/apr_thread_proc.h include/apr_time.h include/apr_user.h include/apr_want.h
83 poll/unix/poll.lo: poll/unix/poll.c .make.dirs include/apr_allocator.h include/apr_dso.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_global_mutex.h include/apr_inherit.h include/apr_network_io.h include/apr_poll.h include/apr_pools.h include/apr_portable.h include/apr_proc_mutex.h include/apr_shm.h include/apr_tables.h include/apr_thread_mutex.h include/apr_thread_proc.h include/apr_time.h include/apr_user.h include/apr_want.h
84 poll/unix/pollcb.lo: poll/uni
[all...]
H A Dapr.mak86 -@erase "$(INTDIR)\poll.obj"
208 "$(INTDIR)\poll.obj" \
292 -@erase "$(INTDIR)\poll.obj"
415 "$(INTDIR)\poll.obj" \
499 -@erase "$(INTDIR)\poll.obj"
622 "$(INTDIR)\poll.obj" \
706 -@erase "$(INTDIR)\poll.obj"
829 "$(INTDIR)\poll.obj" \
913 -@erase "$(INTDIR)\poll.obj"
1036 "$(INTDIR)\poll
[all...]
/macosx-10.10.1/tcpdump-61/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);
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-poll.c1 /* $Id: bsd-poll.c,v 1.4 2008/08/29 21:32:38 dtucker Exp $ */
28 #include "bsd-poll.h"
31 * A minimal implementation of poll(2), built on top of select(2).
40 poll(struct pollfd *fds, nfds_t nfds, int timeout) function
81 /* poll timeout is msec, select is timeval (sec + usec) */
91 /* scan through select results and set poll() flags */
/macosx-10.10.1/apr-32/apr/apr/poll/unix/
H A Dpollcb.c170 return (*pollcb->provider->poll)(pollcb, timeout, func, baton);
H A Dpoll.c120 i = poll(pollset, num_to_poll, timeout);
123 if (i > 0) { /* poll() sets revents only if an event was signalled;
263 ret = poll(pollset->p->pollset, pollset->nelts, timeout);
308 "poll"
407 ret = poll(pollcb->pollset.ps, pollcb->nelts, timeout);
435 "poll"
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dselect.c24 # include <poll.h>
29 # include <poll.h>
41 * OS select poll epoll kqueue /dev/poll
92 * 2. poll() - O(n log n)
100 * poll(), then loops through the pollfd array looking up
129 * d. cupsdDoSelect() uses kevent() to poll for events and
135 * 5. /dev/poll - O(n log n) - NOT YET IMPLEMENTED
136 * a. cupsdStartSelect() opens /dev/poll and allocates an
137 * array of pollfd structs; on failure to open /dev/poll,
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dsocket.h25 #include <poll.h>
27 #include <sys/poll.h>
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dio.cpp32 #include <poll.h>
246 int ret = ::poll(fds, nfds, timeout);
251 throw atf::system_error(IMPL_NAME "::safe_poll", "poll(2) failed",
/macosx-10.10.1/libpcap-48/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>
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dbasic_file.cc40 #include <poll.h>
355 if (poll(__pfd, 1, 0) <= 0)
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_poll.c2 * poll-based notifier, which is the lowest-level part of the Tcl
19 #include <poll.h>
26 /* Some systems require that the poll array be non-empty so provide a
67 int pollArrayIndex; /* index into poll array */
338 /* back to poll-specific code - DEL */
488 numFound = poll(fdArray,fdsInUse,timeout);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dselect.c30 #error "We can't compile without select() or poll() support."
60 * WinSock select() and poll() timeout mechanisms need a valid
99 r = poll(NULL, 0, pending_ms);
121 * Wait for read or write events on a set of file descriptors. It uses poll()
122 * when a fine poll() is available, in order to avoid limits with FD_SETSIZE,
206 r = poll(pfd, num, pending_ms);
368 * This is a wrapper around poll(). If poll() does not exist, then
427 r = poll(ufds, nfds, pending_ms);
/macosx-10.10.1/Libc-1044.1.2/fbsdcompat/
H A D_fbsd_compat_.h89 #define _poll poll
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsandbox-seccomp-filter.c101 SC_ALLOW(poll),
/macosx-10.10.1/ntp-92/libopts/compat/
H A Dcompat.h109 # include <sys/poll.h>
/macosx-10.10.1/ntp-92/sntp/libopts/compat/
H A Dcompat.h109 # include <sys/poll.h>
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Dio.h36 # include <poll.h>
/macosx-10.10.1/xnu-2782.1.97/bsd/man/man2/
H A DMakefile137 poll.2 \

Completed in 309 milliseconds

1234567