Searched refs:POLLHUP (Results 1 - 25 of 35) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dpoll.h78 #define POLLHUP 0x0010 macro
80 #define POLL_RETONLY (POLLERR | POLLHUP | POLLNVAL)
/vbox/src/VBox/NetworkServices/NAT/
H A Dwinpoll.h36 # define POLLHUP 0x0002 macro
H A DRTWinPoll.cpp75 * This is "moral" equivalent to POLLHUP.
138 WSA_TO_POLL(FD_CLOSE, POLLHUP | (pFds[i].events & POLLIN));
140 Assert((revents & ~(pFds[i].events | POLLHUP | POLLERR)) == 0);
H A Dpxtcp.c62 * Different OSes have different quirks in reporting POLLHUP for TCP
183 * On systems that report POLLHUP as soon as the final FIN is
187 * manager thread. See comment in pxtcp_pmgr_pump() POLLHUP case.
515 * report POLLHUP for fully closed tcp sockets.
1116 * Solaris and NetBSD don't report either POLLERR or POLLHUP when
1123 # define CONNECT_CHECK_ERROR (POLLERR | POLLHUP)
1144 if ((revents & (POLLERR | POLLHUP)) /* we were told it's failed */
1151 if ((revents & (POLLERR | POLLHUP))
1428 /* set the flag first, since shutdown() may trigger POLLHUP */
1435 * report POLLHUP
[all...]
H A Dproxy_pollmgr.c284 if (revents & (POLLERR | POLLHUP)) {
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/WebServer/
H A DWebServer.c205 | POLLHUP;
474 if ( 0 != ( events & POLLHUP )) {
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSink/
H A DDataSink.c140 PollFd[ Index ].events = POLLRDNORM | POLLHUP;
321 if ( 0 != ( PollFd[ Index ].revents & POLLHUP )) {
462 PollFd[ Index ].events = POLLRDNORM | POLLHUP;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/TftpServer/
H A DTftpServer.c291 pTftpServer->TftpPort.revents |= POLLHUP;
298 if ( 0 != ( pTftpServer->TftpPort.revents & POLLHUP )) {
1244 pTftpServer->TftpPort.events = POLLRDNORM | POLLHUP;
/vbox/src/VBox/Runtime/r3/posix/
H A Dpipe-posix.cpp438 PollFd.events = POLLHUP;
440 && (PollFd.revents & POLLHUP);
628 PollFd.events = POLLHUP | POLLERR;
/vbox/src/VBox/Main/src-server/linux/
H A DUSBProxyServiceLinux.cpp329 PollFds[1].events = POLLIN | POLLERR | POLLHUP;
/vbox/src/VBox/Devices/Network/
H A DDrvVDE.cpp324 aFDs[1].events = POLLIN | POLLPRI | POLLERR | POLLHUP;
399 if (aFDs[1].revents & (POLLHUP | POLLERR | POLLNVAL))
H A DDrvTAP.cpp351 aFDs[1].events = POLLIN | POLLPRI | POLLERR | POLLHUP;
428 if (aFDs[1].revents & (POLLHUP | POLLERR | POLLNVAL))
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A D_unixos.h105 #define _PR_UNIX_POLL_HUP POLLHUP
558 #define POLLHUP 0x0010 /* fd has been hung up on */ macro
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dport.h295 #define POLLHUP 0x10 macro
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dport.h299 #define POLLHUP 0x10 macro
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dport.h295 #define POLLHUP 0x10 macro
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dport.h304 #define POLLHUP 0x10 macro
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dport.h295 #define POLLHUP 0x10 macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxwrap.c437 * The output events POLLERR and POLLHUP are never turned on.
530 pfd->revents |= POLLHUP;
H A Dunix_errors.c790 else if (err & POLLHUP)
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dport.h295 #define POLLHUP 0x10 macro
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp.c136 # define closefds_poll (POLLHUP)
139 # define rdhup_poll (POLLHUP)
985 * POLLERR, POLLHUP, and POLLOUT.
987 if ( CHECK_FD_SET(so, NetworkEvents, closefds) /* POLLHUP */
990 revents = POLLHUP; /* squash to single "failed" flag */
1006 || ( (revents & POLLHUP)
1040 /* Darwin and probably BSD hosts generates POLLPRI|POLLHUP event on receiving TCP.flags.{ACK|URG|FIN} this
1133 /* No idea about Windows but on Posix, POLLHUP means that we can't send more.
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-freebsd.c371 return (fEvents & (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM));
/vbox/src/VBox/Devices/Parallel/
H A DDrvHostParallel.cpp810 aFDs[1].events = POLLIN | POLLERR | POLLHUP;
823 if (aFDs[1].revents & (POLLHUP | POLLERR | POLLNVAL))
/vbox/src/VBox/Devices/Serial/
H A DDrvHostSerial.cpp691 aFDs[1].events = POLLIN | POLLERR | POLLHUP;
716 if (aFDs[1].revents & (POLLHUP | POLLERR | POLLNVAL))

Completed in 78 milliseconds

12