Home | History | Annotate | Download | only in coregrind

Lines Matching defs:pollfds

840       struct pollfd pollfds[NumConnectionKind];
843 pollfds[FROM_GDB].fd = from_gdb;
844 pollfds[FROM_GDB].events = POLLIN;
845 pollfds[FROM_GDB].revents = 0;
846 pollfds[TO_GDB].fd = to_gdb;
847 pollfds[TO_GDB].events = 0;
848 pollfds[TO_GDB].revents = 0;
851 pollfds[FROM_PID].fd = from_pid;
852 pollfds[FROM_PID].events = POLLIN;
853 pollfds[FROM_PID].revents = 0;
854 pollfds[TO_PID].fd = to_pid;
855 pollfds[TO_PID].events = 0;
856 pollfds[TO_PID].revents = 0;
858 ret = poll(pollfds,
874 if (pollfds[ck].revents & POLLIN) {
892 if (pollfds[ck].revents & POLLERR) {
894 ppConnectionKind(ck), pollfds[ck].fd);
898 if (pollfds[ck].revents & POLLHUP) {
900 ppConnectionKind(ck), pollfds[ck].fd);
904 if (pollfds[ck].revents & POLLNVAL) {
906 ppConnectionKind(ck), pollfds[ck].fd);