Searched refs:POLLIN (Results 1 – 10 of 10) sorted by relevance
164 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()
207 pollfd.events = POLLIN; in fpm_event_devpoll_add()232 pollfd.events = POLLIN | POLLREMOVE; in fpm_event_devpoll_remove()
163 if (port_associate(pfd, PORT_SOURCE_FD, ev->fd, POLLIN, (void *)ev) < 0) { in fpm_event_port_add()
121 #ifndef POLLIN122 # define POLLIN 0x0001 /* There is data to read */ macro135 #define PHP_POLLREADABLE (POLLIN|POLLERR|POLLHUP)
1184 ufds[i].revents |= POLLIN;
489 fds[0].events = POLLIN;492 fds[1].events = POLLIN;
850 fds.events = POLLIN;856 if (ret > 0 && (fds.revents & POLLIN)) {
1010 fds.events = POLLIN;1016 if (ret > 0 && (fds.revents & POLLIN)) {
502 (POLLIN|POLLPRI) : POLLOUT, has_timeout ? &left_time : NULL); in php_openssl_enable_crypto()
104 - 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 27 milliseconds