Lines Matching refs:sought
255 windows_compute_revents_socket (SOCKET h, int sought, long lNetworkEvents)
260 happened |= (POLLIN | POLLRDNORM) & sought;
273 happened |= (POLLIN | POLLRDNORM) & sought;
285 happened |= (POLLOUT | POLLWRNORM | POLLWRBAND) & sought;
288 happened |= (POLLPRI | POLLRDBAND) & sought;
297 compute_revents (int fd, int sought, fd_set *rfds, fd_set *wfds, fd_set *efds)
325 happened |= (POLLIN | POLLRDNORM) & sought;
334 happened |= (POLLIN | POLLRDNORM) & sought;
341 happened |= (POLLOUT | POLLWRNORM | POLLWRBAND) & sought;
344 happened |= (POLLPRI | POLLRDBAND) & sought;
491 int sought = pfd[i].events;
495 if (!(sought & (POLLIN | POLLRDNORM | POLLOUT | POLLWRNORM | POLLWRBAND
506 if (sought & (POLLIN | POLLRDNORM))
511 if (sought & (POLLOUT | POLLWRNORM | POLLWRBAND))
516 if (sought & (POLLPRI | POLLRDBAND))
531 pfd[i].revents = windows_compute_revents (h, &sought);
532 if (sought)
627 int sought = pfd[i].events;
628 happened = windows_compute_revents (h, &sought);