Home
last modified time | relevance | path

Searched refs:revents (Results 1 – 7 of 7) sorted by relevance

/PHP-5.5/main/
H A Dphp_network.h118 short revents; member
163 p.revents = 0; in php_pollfd_for()
168 return p.revents; in php_pollfd_for()
181 p.revents = 0; in php_pollfd_for_ms()
186 return p.revents; in php_pollfd_for_ms()
H A Dnetwork.c1185 ufds[i].revents = 0;
1189 ufds[i].revents |= POLLIN;
1192 ufds[i].revents |= POLLOUT;
1195 ufds[i].revents |= POLLPRI;
/PHP-5.5/sapi/fpm/fpm/events/
H A Ddevpoll.c208 pollfd.revents = 0; in fpm_event_devpoll_add()
233 pollfd.revents = 0; in fpm_event_devpoll_remove()
H A Dpoll.c164 if (active_pollfds[q->ev->index].revents & POLLIN) { in fpm_event_poll_wait()
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c883 fds.revents = 0;
888 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch104 - if ( pollfds[i].revents & ( POLLIN | POLLOUT ) )
105 + if ( pollfds[i].revents & ( POLLIN | POLLOUT | POLLERR | POLLHUP | POLLNVAL ) )
113 - case FDW_READ: return pollfds[poll_fdidx[fd]].revents & POLLIN;
114 - case FDW_WRITE: return pollfds[poll_fdidx[fd]].revents & POLLOUT;
115 + case FDW_READ: return pollfds[poll_fdidx[fd]].revents & ( POLLIN | POLLERR | POLLHUP | POLLNVAL );
116 + case FDW_WRITE: return pollfds[poll_fdidx[fd]].revents & ( POLLOUT | POLLERR | POLLHUP | POLLNVA…
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c1241 fds.revents = 0;
1246 if (ret > 0 && (fds.revents & POLLIN)) {

Completed in 34 milliseconds