Symbol: POLLOUT
bin/sh/output.c
388
pfd.events = POLLOUT;
crypto/libressl/apps/nc/atomicio.c
47
pfd.events = f == read ? POLLIN : POLLOUT;
crypto/libressl/apps/nc/netcat.c
1049
pfd.events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1247
pfd[POLL_STDIN].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1252
pfd[POLL_NETOUT].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1258
if (pfd[POLL_NETOUT].revents & POLLOUT && stdinbufpos > 0) {
crypto/libressl/apps/nc/netcat.c
1264
pfd[POLL_NETOUT].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1281
pfd[POLL_NETIN].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1297
pfd[POLL_STDOUT].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1307
if (pfd[POLL_STDOUT].revents & POLLOUT && netinbufpos > 0) {
crypto/libressl/apps/nc/netcat.c
1313
pfd[POLL_STDOUT].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1426
pfd.events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
818
pfd.events = POLLOUT;
crypto/libressl/apps/openssl/ocsp.c
1437
pfd[0].events = POLLOUT;
crypto/libressl/apps/openssl/ocsp.c
1478
pfd[0].events = POLLOUT;
crypto/libressl/apps/openssl/s_client.c
1404
pfd[1].events = POLLOUT;
crypto/libressl/apps/openssl/s_client.c
1413
pfd[2].events |= POLLOUT;
crypto/libressl/apps/openssl/s_client.c
1430
(pfd[2].revents & (POLLOUT|POLLERR|POLLNVAL))) {
crypto/libressl/apps/openssl/s_client.c
1492
(pfd[1].revents & (POLLOUT|POLLERR|POLLNVAL))) {
crypto/openssh/atomicio.c
123
pfd.events = f == readv ? POLLIN : POLLOUT;
crypto/openssh/atomicio.c
125
pfd.events = POLLIN|POLLOUT;
crypto/openssh/atomicio.c
61
pfd.events = f == read ? POLLIN : POLLOUT;
crypto/openssh/atomicio.c
63
pfd.events = POLLIN|POLLOUT;
crypto/openssh/channels.c
2716
ev |= POLLOUT;
crypto/openssh/channels.c
2723
ev |= POLLOUT;
crypto/openssh/channels.c
2730
ev |= POLLOUT;
crypto/openssh/channels.c
2745
ev |= POLLOUT;
crypto/openssh/channels.c
2761
ev |= POLLOUT;
crypto/openssh/channels.c
2777
ev |= POLLOUT;
crypto/openssh/channels.c
2896
"wfd/r", POLLOUT, SSH_CHAN_IO_WFD);
crypto/openssh/channels.c
2902
"efdw/r", POLLOUT, SSH_CHAN_IO_EFD_W);
crypto/openssh/channels.c
2908
"sockw/r", POLLOUT, SSH_CHAN_IO_SOCK_W);
crypto/openssh/channels.c
2916
"wfd", POLLOUT, SSH_CHAN_IO_WFD);
crypto/openssh/channels.c
2925
"efdw", POLLOUT, SSH_CHAN_IO_EFD_W);
crypto/openssh/channels.c
2934
"sockw", POLLOUT, SSH_CHAN_IO_SOCK_W);
crypto/openssh/clientloop.c
715
POLLOUT : 0;
crypto/openssh/misc.c
402
if (waitfd(sockfd, timeoutp, POLLIN | POLLOUT, NULL) == -1)
crypto/openssh/monitor_fdpass.c
89
pfd.events = POLLOUT;
crypto/openssh/mux.c
1513
pfd.events = POLLOUT;
crypto/openssh/packet.c
2139
pfd.events = POLLOUT;
crypto/openssh/serverloop.c
208
(*pfdp)[1].events = ssh_packet_have_data_to_write(ssh) ? POLLOUT : 0;
crypto/openssh/sftp-server.c
2059
pfd[1].events = POLLOUT;
crypto/openssh/sftp-server.c
2084
if (pfd[1].revents & (POLLOUT|POLLHUP)) {
crypto/openssh/ssh-agent.c
2050
if ((pfd[i].revents & (POLLOUT|POLLHUP)) != 0 &&
crypto/openssh/ssh-agent.c
2122
pfd[j].events |= POLLOUT;
crypto/openssh/ssh-pkcs11-helper.c
379
pfd[1].events = POLLOUT;
crypto/openssh/ssh-pkcs11-helper.c
400
if ((pfd[1].revents & (POLLOUT|POLLHUP)) != 0) {
lib/libdmsg/msg.c
482
fds[si].events |= POLLOUT;
lib/libdmsg/msg.c
502
if (si >= 0 && (fds[si].revents & POLLOUT))
lib/libdmsg/msg.c
505
if (wi >= 0 && (fds[wi].revents & POLLOUT))
lib/libfetch/common.c
1488
pfd.events = POLLOUT | POLLERR;
lib/libusb/libusb10.c
501
POLLOUT | POLLRDNORM | POLLWRNORM);
lib/libusb/libusb10.c
655
POLLOUT | POLLRDNORM | POLLWRNORM);
lib/libusb/libusb10.c
748
POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM);
lib/libusb/libusb10.c
819
POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM);
lib/libusb/libusb20.c
1029
pfd[0].events = (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM);
sys/dev/misc/cuse/cuse.c
1404
POLLRDNORM | POLLOUT | POLLWRNORM));
sys/dev/misc/cuse/cuse.c
1646
if (temp & (POLLIN | POLLOUT)) {
sys/dev/misc/cuse/cuse.c
1650
if (temp & POLLOUT)
sys/dev/misc/cuse/cuse.c
1926
if (events & (POLLOUT | POLLWRNORM))
sys/dev/misc/cuse/cuse.c
1952
revents |= (events & (POLLOUT | POLLWRNORM));
sys/dev/misc/cuse/cuse.c
1961
POLLRDNORM | POLLOUT | POLLWRNORM));
sys/dev/misc/vkbd/vkbd.c
605
if (events & (POLLOUT | POLLWRNORM)) {
sys/dev/misc/vkbd/vkbd.c
607
revents |= events & (POLLOUT | POLLWRNORM);
sys/kern/sys_generic.c
1354
if (pfd->events & (POLLOUT | POLLWRNORM))
sys/kern/sys_generic.c
1399
if (pfd->events & (POLLOUT | POLLWRNORM)) {
sys/kern/sys_generic.c
1573
if (pfd->events & POLLOUT)
sys/kern/sys_generic.c
1574
pfd->revents |= POLLOUT;
sys/kern/sys_generic.c
1746
return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
sys/kern/tty_tty.c
327
if (seltrue(dev, POLLOUT | POLLWRNORM))
sys/net/netmap/netmap.c
1607
want_tx = events & (POLLOUT | POLLWRNORM);
sys/sys/poll.h
63
#define POLLWRNORM POLLOUT /* no write type differentiation */
sys/sys/poll.h
76
#define POLLSTANDARD (POLLIN|POLLPRI|POLLOUT|POLLRDNORM|POLLRDBAND|\