Lines Matching refs:revents
1964 fds[i].revents = 0; in poll_nocancel()
2015 fds[i].revents = POLLNVAL; in poll_nocancel()
2018 fds[i].revents = 0; in poll_nocancel()
2078 short prev_revents = fds->revents; in poll_callback()
2083 fds->revents |= POLLHUP; in poll_callback()
2086 fds->revents |= POLLERR; in poll_callback()
2091 if (fds->revents & POLLHUP) { in poll_callback()
2099 fds->revents |= (fds->events & mask); in poll_callback()
2103 if (!(fds->revents & POLLHUP)) { in poll_callback()
2104 fds->revents |= (fds->events & (POLLOUT | POLLWRNORM | POLLWRBAND)); in poll_callback()
2110 fds->revents |= (fds->events & POLLEXTEND); in poll_callback()
2113 fds->revents |= (fds->events & POLLATTRIB); in poll_callback()
2116 fds->revents |= (fds->events & POLLNLINK); in poll_callback()
2119 fds->revents |= (fds->events & POLLWRITE); in poll_callback()
2124 if (fds->revents != 0 && prev_revents == 0) { in poll_callback()