Home
last modified time | relevance | path

Searched refs:revents (Results 1 – 14 of 14) sorted by relevance

/glibc-2.36/hurd/
Dhurdselect.c578 int revents = 0; in _hurd_select() local
584 revents = POLLHUP; in _hurd_select()
587 revents = POLLNVAL; in _hurd_select()
590 revents = POLLERR; in _hurd_select()
597 revents |= POLLIN; in _hurd_select()
599 revents |= POLLOUT; in _hurd_select()
601 revents |= POLLPRI; in _hurd_select()
604 pollfds[i].revents = revents; in _hurd_select()
/glibc-2.36/support/
Dsupport_capture_subprocess.c35 if (pfd->revents != 0) in transfer()
44 pfd->revents = 0; in transfer()
50 pfd->revents = 0; in transfer()
Dresolv_test.c771 if (fds[server_index].revents != 0) in server_thread_udp_single()
775 fds[server_index].revents = 0; in server_thread_udp_single()
/glibc-2.36/sunrpc/
Dsvc_tcp.c341 if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP) in readtcp()
342 || (pollfd.revents & POLLNVAL)) in readtcp()
347 while ((pollfd.revents & POLLIN) == 0); in readtcp()
Dsvc_unix.c440 if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP) in readunix()
441 || (pollfd.revents & POLLNVAL)) in readunix()
446 while ((pollfd.revents & POLLIN) == 0); in readunix()
Dsvc_run.c84 my_pollfd[i].revents = 0; in libc_hidden_nolink_sunrpc()
Dsvc.c436 if (p->fd != -1 && p->revents) in libc_hidden_nolink_sunrpc()
439 if (p->revents & POLLNVAL) in libc_hidden_nolink_sunrpc()
Dclnt_udp.c411 if (fd.revents & POLLERR) in clntudp_call()
/glibc-2.36/io/sys/
Dpoll.h40 short int revents; /* Types of events that actually occurred. */ member
/glibc-2.36/conform/data/
Dpoll.h-data5 element {struct pollfd} {short int} revents
/glibc-2.36/resolv/
Dres_send.c1039 if (pfd[0].revents & POLLOUT) { in send_dg()
1126 } else if (pfd[0].revents & POLLIN) { in send_dg()
1291 } else if (pfd[0].revents & (POLLERR | POLLHUP | POLLNVAL)) in send_dg()
/glibc-2.36/nscd/
Dconnections.c2064 if (conns[0].revents != 0) in main_loop_poll()
2097 if (conns[1].revents != 0) in main_loop_poll()
2121 if (idx_nl_status_fd != 0 && conns[idx_nl_status_fd].revents != 0) in main_loop_poll()
2135 if (conns[cnt].revents != 0) in main_loop_poll()
/glibc-2.36/nis/
Dnis_callback.c214 my_pollfd[i].revents = 0; in internal_nis_do_callback()
/glibc-2.36/inet/
Drcmd.c264 if (__poll (pfd, 2, -1) < 1 || (pfd[1].revents & POLLIN) == 0){ in rcmd_af()