Home
last modified time | relevance | path

Searched refs:POLLIN (Results 1 – 10 of 10) sorted by relevance

/PHP-5.3/sapi/fpm/fpm/events/
H A Dpoll.c164 if (active_pollfds[q->ev->index].revents & POLLIN) { in fpm_event_poll_wait()
194 pollfds[next_free_slot].events = POLLIN; in fpm_event_poll_add()
213 pollfds[i].events = POLLIN; in fpm_event_poll_add()
H A Ddevpoll.c207 pollfd.events = POLLIN; in fpm_event_devpoll_add()
232 pollfd.events = POLLIN | POLLREMOVE; in fpm_event_devpoll_remove()
H A Dport.c163 if (port_associate(pfd, PORT_SOURCE_FD, ev->fd, POLLIN, (void *)ev) < 0) { in fpm_event_port_add()
/PHP-5.3/main/
H A Dphp_network.h121 #ifndef POLLIN
122 # define POLLIN 0x0001 /* There is data to read */ macro
135 #define PHP_POLLREADABLE (POLLIN|POLLERR|POLLHUP)
H A Dnetwork.c1184 ufds[i].revents |= POLLIN;
/PHP-5.3/sapi/fpm/
H A Dconfig.m4489 fds[0].events = POLLIN;
492 fds[1].events = POLLIN;
/PHP-5.3/sapi/fpm/fpm/
H A Dfastcgi.c850 fds.events = POLLIN;
856 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-5.3/sapi/cgi/
H A Dfastcgi.c1010 fds.events = POLLIN;
1016 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-5.3/ext/openssl/
H A Dxp_ssl.c502 (POLLIN|POLLPRI) : POLLOUT, has_timeout ? &left_time : NULL); in php_openssl_enable_crypto()
/PHP-5.3/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;
115 + case FDW_READ: return pollfds[poll_fdidx[fd]].revents & ( POLLIN | POLLERR | POLLHUP | POLLNVAL );

Completed in 24 milliseconds