Lines Matching refs:wfd
165 int wfd, int wfd_want_write, in poll_two_fds() argument
180 if (rfd >= FD_SETSIZE || wfd >= FD_SETSIZE) in poll_two_fds()
190 if (wfd != -1 && wfd_want_write) in poll_two_fds()
191 openssl_fdset(wfd, &wfd_set); in poll_two_fds()
196 if (wfd != -1) in poll_two_fds()
197 openssl_fdset(wfd, &efd_set); in poll_two_fds()
200 if (wfd > maxfd) in poll_two_fds()
201 maxfd = wfd; in poll_two_fds()
203 if (!ossl_assert(rfd != -1 || wfd != -1 in poll_two_fds()
247 if (rfd == wfd) { in poll_two_fds()
259 pfds[npfd].fd = wfd; in poll_two_fds()
261 if (wfd >= 0 && pfds[npfd].events != 0) in poll_two_fds()
326 int rfd, wfd; in poll_two_descriptors() local
329 || !poll_descriptor_to_fd(w, &wfd)) in poll_two_descriptors()
332 return poll_two_fds(rfd, r_want_read, wfd, w_want_write, deadline, mutex); in poll_two_descriptors()