Lines Matching full:ufds
1004 struct pollfd ufds[4];
1118 ufds[fd_count].fd = get_property_set_fd();
1119 ufds[fd_count].events = POLLIN;
1120 ufds[fd_count].revents = 0;
1125 ufds[fd_count].fd = get_signal_fd();
1126 ufds[fd_count].events = POLLIN;
1127 ufds[fd_count].revents = 0;
1132 ufds[fd_count].fd = get_keychord_fd();
1133 ufds[fd_count].events = POLLIN;
1134 ufds[fd_count].revents = 0;
1159 nr = poll(ufds, fd_count, timeout);
1164 if (ufds[i].revents & POLLIN) {
1165 if (ufds[i].fd == get_property_set_fd())
1167 else if (ufds[i].fd == get_keychord_fd())
1169 else if (ufds[i].fd == get_signal_fd())