Lines Matching defs:ufds
664 struct pollfd ufds[4];
761 ufds[fd_count].fd = get_property_set_fd();
762 ufds[fd_count].events = POLLIN;
763 ufds[fd_count].revents = 0;
768 ufds[fd_count].fd = get_signal_fd();
769 ufds[fd_count].events = POLLIN;
770 ufds[fd_count].revents = 0;
775 ufds[fd_count].fd = get_keychord_fd();
776 ufds[fd_count].events = POLLIN;
777 ufds[fd_count].revents = 0;
802 nr = poll(ufds, fd_count, timeout);
807 if (ufds[i].revents == POLLIN) {
808 if (ufds[i].fd == get_property_set_fd())
810 else if (ufds[i].fd == get_keychord_fd())
812 else if (ufds[i].fd == get_signal_fd())