Lines Matching refs:ufds
1172 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout) argument
1183 if (ufds[i].fd > max_fd)
1184 max_fd = ufds[i].fd;
1202 if (ufds[i].events & PHP_POLLREADABLE) {
1203 PHP_SAFE_FD_SET(ufds[i].fd, &rset);
1205 if (ufds[i].events & POLLOUT) {
1206 PHP_SAFE_FD_SET(ufds[i].fd, &wset);
1208 if (ufds[i].events & POLLPRI) {
1209 PHP_SAFE_FD_SET(ufds[i].fd, &eset);
1227 ufds[i].revents = 0;
1229 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &rset)) {
1231 ufds[i].revents |= POLLIN;
1233 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &wset)) {
1234 ufds[i].revents |= POLLOUT;
1236 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &eset)) {
1237 ufds[i].revents |= POLLPRI;