Lines Matching refs:ufds
1181 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout) argument
1192 if (ufds[i].fd > max_fd)
1193 max_fd = ufds[i].fd;
1211 if (ufds[i].events & PHP_POLLREADABLE) {
1212 PHP_SAFE_FD_SET(ufds[i].fd, &rset);
1214 if (ufds[i].events & POLLOUT) {
1215 PHP_SAFE_FD_SET(ufds[i].fd, &wset);
1217 if (ufds[i].events & POLLPRI) {
1218 PHP_SAFE_FD_SET(ufds[i].fd, &eset);
1236 ufds[i].revents = 0;
1238 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &rset)) {
1240 ufds[i].revents |= POLLIN;
1242 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &wset)) {
1243 ufds[i].revents |= POLLOUT;
1245 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &eset)) {
1246 ufds[i].revents |= POLLPRI;