Symbol: POLL_NETIN
crypto/libressl/apps/nc/netcat.c
1168
pfd[POLL_NETIN].fd = net_fd;
crypto/libressl/apps/nc/netcat.c
1169
pfd[POLL_NETIN].events = POLLIN;
crypto/libressl/apps/nc/netcat.c
1177
if (pfd[POLL_STDIN].fd == -1 && pfd[POLL_NETIN].fd == -1 &&
crypto/libressl/apps/nc/netcat.c
1184
if (lflag && pfd[POLL_NETIN].fd == -1 &&
crypto/libressl/apps/nc/netcat.c
1217
if (pfd[POLL_NETIN].events & POLLIN &&
crypto/libressl/apps/nc/netcat.c
1218
pfd[POLL_NETIN].revents & POLLHUP &&
crypto/libressl/apps/nc/netcat.c
1219
!(pfd[POLL_NETIN].revents & POLLIN))
crypto/libressl/apps/nc/netcat.c
1220
pfd[POLL_NETIN].fd = -1;
crypto/libressl/apps/nc/netcat.c
1235
if (pfd[POLL_NETIN].fd != -1)
crypto/libressl/apps/nc/netcat.c
1236
shutdown(pfd[POLL_NETIN].fd, SHUT_RD);
crypto/libressl/apps/nc/netcat.c
1237
pfd[POLL_NETIN].fd = -1;
crypto/libressl/apps/nc/netcat.c
1275
if (pfd[POLL_NETIN].revents & POLLIN && netinbufpos < BUFSIZE) {
crypto/libressl/apps/nc/netcat.c
1276
ret = fillbuf(pfd[POLL_NETIN].fd, netinbuf,
crypto/libressl/apps/nc/netcat.c
1279
pfd[POLL_NETIN].events = POLLIN;
crypto/libressl/apps/nc/netcat.c
1281
pfd[POLL_NETIN].events = POLLOUT;
crypto/libressl/apps/nc/netcat.c
1283
pfd[POLL_NETIN].fd = -1;
crypto/libressl/apps/nc/netcat.c
1286
shutdown(pfd[POLL_NETIN].fd, SHUT_RD);
crypto/libressl/apps/nc/netcat.c
1287
pfd[POLL_NETIN].fd = -1;
crypto/libressl/apps/nc/netcat.c
1290
if (pfd[POLL_NETIN].fd != -1)
crypto/libressl/apps/nc/netcat.c
1291
shutdown(pfd[POLL_NETIN].fd, SHUT_RD);
crypto/libressl/apps/nc/netcat.c
1292
pfd[POLL_NETIN].fd = -1;
crypto/libressl/apps/nc/netcat.c
1300
pfd[POLL_NETIN].events = 0;
crypto/libressl/apps/nc/netcat.c
1303
atelnet(pfd[POLL_NETIN].fd, netinbuf,
crypto/libressl/apps/nc/netcat.c
1321
pfd[POLL_NETIN].events = POLLIN;
crypto/libressl/apps/nc/netcat.c
1331
if (pfd[POLL_NETIN].fd == -1 && netinbufpos == 0) {