Lines Matching refs:ufds
1137 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout) argument
1147 if (ufds[i].fd > max_fd)
1148 max_fd = ufds[i].fd;
1158 if (ufds[i].events & PHP_POLLREADABLE) {
1159 PHP_SAFE_FD_SET(ufds[i].fd, &rset);
1161 if (ufds[i].events & POLLOUT) {
1162 PHP_SAFE_FD_SET(ufds[i].fd, &wset);
1164 if (ufds[i].events & POLLPRI) {
1165 PHP_SAFE_FD_SET(ufds[i].fd, &eset);
1183 ufds[i].revents = 0;
1185 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &rset)) {
1187 ufds[i].revents |= POLLIN;
1189 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &wset)) {
1190 ufds[i].revents |= POLLOUT;
1192 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &eset)) {
1193 ufds[i].revents |= POLLPRI;