Home
last modified time | relevance | path

Searched refs:poll (Results 1 – 25 of 252) sorted by relevance

1234567891011

/illumos-gate/usr/src/cmd/ast/libshell/i386/FEATURE/
H A Dpoll3 /* : : generated from contrib/ast/src/cmd/ksh93/features/poll by iffe version 2012-07-17 : : */
67 #define _hdr_poll 1 /* #include <poll.h> ok */
69 #define _sys_poll 1 /* #include <sys/poll.h> ok */
72 #define _lib_poll 1 /* poll() in default lib(s) */
89 # define poll _SYS_poll
95 # include <poll.h>
98 # include <sys/poll.h>
102 # undef poll
103 extern __MANGLE__ int poll __PROTO__((struct pollfd*,unsigned long,int));
/illumos-gate/usr/src/cmd/ast/libshell/sparc/FEATURE/
H A Dpoll3 /* : : generated from contrib/ast/src/cmd/ksh93/features/poll by iffe version 2012-07-17 : : */
67 #define _hdr_poll 1 /* #include <poll.h> ok */
69 #define _sys_poll 1 /* #include <sys/poll.h> ok */
72 #define _lib_poll 1 /* poll() in default lib(s) */
89 # define poll _SYS_poll
95 # include <poll.h>
98 # include <sys/poll.h>
102 # undef poll
103 extern __MANGLE__ int poll __PROTO__((struct pollfd*,unsigned long,int));
/illumos-gate/usr/src/cmd/ast/libshell/sparcv9/FEATURE/
H A Dpoll3 /* : : generated from contrib/ast/src/cmd/ksh93/features/poll by iffe version 2012-07-17 : : */
67 #define _hdr_poll 1 /* #include <poll.h> ok */
69 #define _sys_poll 1 /* #include <sys/poll.h> ok */
72 #define _lib_poll 1 /* poll() in default lib(s) */
89 # define poll _SYS_poll
95 # include <poll.h>
98 # include <sys/poll.h>
102 # undef poll
103 extern __MANGLE__ int poll __PROTO__((struct pollfd*,unsigned long,int));
/illumos-gate/usr/src/cmd/ast/libshell/amd64/FEATURE/
H A Dpoll3 /* : : generated from contrib/ast/src/cmd/ksh93/features/poll by iffe version 2012-07-17 : : */
67 #define _hdr_poll 1 /* #include <poll.h> ok */
69 #define _sys_poll 1 /* #include <sys/poll.h> ok */
72 #define _lib_poll 1 /* poll() in default lib(s) */
89 # define poll _SYS_poll
95 # include <poll.h>
98 # include <sys/poll.h>
102 # undef poll
103 extern __MANGLE__ int poll __PROTO__((struct pollfd*,unsigned long,int));
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/features/
H A Dpoll2 hdr,sys poll,socket,netinet/in
3 lib select,poll,socket
130 # define poll _SYS_poll
136 # include <poll.h>
139 # include <sys/poll.h>
143 # undef poll
144 extern int poll(struct pollfd*,unsigned long,int);
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_builtin_poll.sh45 builtin -f libshell.so.1 poll || err_exit "poll builtin not found."
55 cat /dev/zero | { redirect 5<&0 ; poll -e d1.res -t 5. d1.u ; } || err_exit "poll returned non-zero…
64 { poll -e d1.res -t 5. d1.u ; } 5</dev/null 5>/dev/null || err_exit "poll returned non-zero exit co…
/illumos-gate/usr/src/uts/common/sys/fc4/
H A Dfcal_transport.h129 uint_t poll);
132 uint_t poll,
137 uint_t poll);
146 uint_t poll);
/illumos-gate/usr/src/test/os-tests/tests/uccid/
H A Dyk-poll.c63 ret = poll(pfds, 1, 0); in main()
79 ret = poll(pfds, 1, -1); in main()
97 ret = poll(pfds, 1, 0); in main()
H A DMakefile30 notxn-poll \
36 yk-poll \
H A Dnotxn-poll.c52 ret = poll(pfds, 1, 0); in main()
/illumos-gate/usr/src/cmd/bnu/
H A Duudemon.poll51 while read site poll
56 for i in $poll
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dpoll.c26 #pragma weak _poll = poll
42 poll(struct pollfd *fds, nfds_t nfd, int timeout) in poll() function
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Dsyncloop.c333 while (poll(&pfd, 1, short_time) == 1) { in quiet_period()
336 if (poll(&pfd, 1, long_time) == 1) { in quiet_period()
372 pollret = poll(&pfd, 1, long_time); in first_packet()
443 while (pollret = poll(&pfd, 1, zero_time)) { in many_packets()
468 pollret = poll(&pfd, 1, long_time); in many_packets()
485 while ((incount < reccount) && (poll(&pfd, 1, long_time) == 1)) { in many_packets()
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lw2plus/fcal_leds/
H A Dfcal_leds.conf58 slow-poll: 59
59 fast-poll: 2
/illumos-gate/usr/src/uts/intel/io/vmm/io/
H A Dvatpic.c84 bool poll; member
280 atpic->poll = false; in vatpic_icw1()
382 atpic->poll = true; in vatpic_ocw3()
620 if (atpic->poll) { in vatpic_read()
621 atpic->poll = false; in vatpic_read()
819 (src->poll ? (1 << 2) : 0) | in vatpic_data_read()
883 out->poll = (chip->vac_status & (1 << 2)) != 0; in vatpic_data_write()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dlib75 tst lib_poll_fd_1 note{ fd is first arg to poll() }end execute{
76 #include <poll.h>
88 if (poll(&fd, 1, 0) < 0 || fd.revents != 0) return 1;
90 if (poll(&fd, 1, 0) < 0 || fd.revents == 0) return 1;
95 tst lib_poll_fd_2 note{ fd is second arg to poll() }end execute{
96 #include <poll.h>
108 return poll(1, &fd, 0) < 0;
109 if (poll(1, &fd, 0) < 0 || fd.revents != 0) return 1;
111 if (poll(1, &fd, 0) < 0 || fd.revents == 0) return 1;
120 #include <poll.h>
[all …]
/illumos-gate/usr/src/cmd/svc/startd/
H A Dstartd.c323 (void) poll(NULL, 0, msecs); in startd_alloc_retry()
346 (void) poll(NULL, 0, msecs); in safe_realloc()
372 (void) poll(NULL, 0, msecs); in safe_strdup()
409 (void) poll(NULL, 0, msecs); in startd_list_pool_create()
441 (void) poll(NULL, 0, msecs); in startd_list_create()
550 (void) poll(NULL, 0, msecs); in read_startd_config()
/illumos-gate/usr/src/cmd/stat/common/
H A Dacquire.c319 (void) poll(NULL, 0, RETRY_DELAY); in acquire_snapshot()
344 (void) poll(NULL, 0, RETRY_DELAY); in acquire_snapshot()
397 (void) poll(NULL, 0, RETRY_DELAY); in open_kstat()
412 (void) poll(NULL, 0, RETRY_DELAY); in safe_alloc()
429 (void) poll(NULL, 0, RETRY_DELAY); in safe_strdup()
/illumos-gate/usr/src/uts/common/io/dld/
H A Ddld_proto.c1408 dld_capab_poll_enable(dld_str_t *dsp, dld_capab_poll_t *poll) in dld_capab_poll_enable() argument
1432 (mac_resource_add_t)poll->poll_ring_add_cf, in dld_capab_poll_enable()
1433 (mac_resource_remove_t)poll->poll_ring_remove_cf, in dld_capab_poll_enable()
1434 (mac_resource_quiesce_t)poll->poll_ring_quiesce_cf, in dld_capab_poll_enable()
1435 (mac_resource_restart_t)poll->poll_ring_restart_cf, in dld_capab_poll_enable()
1436 (mac_resource_bind_t)poll->poll_ring_bind_cf, in dld_capab_poll_enable()
1437 poll->poll_ring_ch); in dld_capab_poll_enable()
1447 dld_capab_poll_disable(dld_str_t *dsp, dld_capab_poll_t *poll) in dld_capab_poll_disable() argument
1462 dld_capab_poll_t *poll = data; in dld_capab_poll() local
1468 return (dld_capab_poll_enable(dsp, poll)); in dld_capab_poll()
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/littleneck/conf/
H A Dplatsvcd.conf38 * INTERVAL <poll interval in seconds> <#tasks at this interval>
40 * Indicates the poll interval at which a list of tasks will be run
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dnapms.c79 if (poll(&pollfd, 0L, ms) == -1) in napms()
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/sebring/conf/
H A Dplatsvcd.conf38 * INTERVAL <poll interval in seconds> <#tasks at this interval>
40 * Indicates the poll interval at which a list of tasks will be run
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/cherrystone/conf/
H A Dplatsvcd.conf38 * INTERVAL <poll interval in seconds> <#tasks at this interval>
40 * Indicates the poll interval at which a list of tasks will be run
/illumos-gate/usr/src/uts/intel/poll/
H A DMakefile41 MODULE = poll
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dnic.h26 int (*poll)P((struct nic *, int retrieve)); member

1234567891011