Home
last modified time | relevance | path

Searched refs:POLLHUP (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/sys/
H A Dpoll.h81 #define POLLHUP 0x0010 /* file descriptor was "hung up" */ macro
87 POLLWRBAND|POLLERR|POLLHUP|POLLNVAL)
/f-stack/app/nginx-1.16.1/src/event/modules/
H A Dngx_devpoll_module.c471 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_devpoll_process_events()
477 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { in ngx_devpoll_process_events()
484 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_devpoll_process_events()
H A Dngx_eventport_module.c531 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_eventport_process_events()
537 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { in ngx_eventport_process_events()
543 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_eventport_process_events()
H A Dngx_poll_module.c323 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { in ngx_poll_process_events()
356 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_poll_process_events()
H A Dngx_win32_poll_module.c333 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { in ngx_poll_process_events()
366 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { in ngx_poll_process_events()
/f-stack/dpdk/lib/librte_vhost/
H A Dfd_man.c22 #define FDPOLLERR (POLLERR | POLLHUP | POLLNVAL)
/f-stack/freebsd/kern/
H A Dsys_procdesc.c434 revents |= POLLHUP; in procdesc_poll()
H A Dsys_generic.c1249 POLLRDNORM | POLLHUP | POLLERR,
1250 POLLWRNORM | POLLHUP | POLLERR,
1664 if ((fds->revents & POLLHUP) != 0) in pollscan()
H A Dtty_pts.c405 return ((events & (POLLIN|POLLRDNORM)) | POLLHUP); in ptsdev_poll()
H A Dtty.c655 return ((events & (POLLIN|POLLRDNORM)) | POLLHUP); in ttydev_poll()
665 revents |= POLLHUP; in ttydev_poll()
H A Dsys_pipe.c1458 revents |= POLLHUP; in pipe_poll()
H A Duipc_socket.c3546 revents = (events & (POLLIN | POLLRDNORM)) | POLLHUP;
3569 revents |= POLLHUP;
/f-stack/app/redis-5.0.5/src/
H A Dae.c497 if (pfd.revents & POLLHUP) retmask |= AE_WRITABLE; in aeWait()
/f-stack/freebsd/net/
H A Dbpf.c2104 (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM)); in bpfpoll()