Lines Matching refs:ufds
1211 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout) argument
1221 if (ufds[i].fd > max_fd)
1222 max_fd = ufds[i].fd;
1232 if (ufds[i].events & PHP_POLLREADABLE) {
1233 PHP_SAFE_FD_SET(ufds[i].fd, &rset);
1235 if (ufds[i].events & POLLOUT) {
1236 PHP_SAFE_FD_SET(ufds[i].fd, &wset);
1238 if (ufds[i].events & POLLPRI) {
1239 PHP_SAFE_FD_SET(ufds[i].fd, &eset);
1257 ufds[i].revents = 0;
1259 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &rset)) {
1261 ufds[i].revents |= POLLIN;
1263 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &wset)) {
1264 ufds[i].revents |= POLLOUT;
1266 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &eset)) {
1267 ufds[i].revents |= POLLPRI;