Lines Matching full:ufds
964 struct pollfd ufds[4];
1089 ufds[fd_count].fd = get_property_set_fd();
1090 ufds[fd_count].events = POLLIN;
1091 ufds[fd_count].revents = 0;
1096 ufds[fd_count].fd = get_signal_fd();
1097 ufds[fd_count].events = POLLIN;
1098 ufds[fd_count].revents = 0;
1103 ufds[fd_count].fd = get_keychord_fd();
1104 ufds[fd_count].events = POLLIN;
1105 ufds[fd_count].revents = 0;
1130 nr = poll(ufds, fd_count, timeout);
1135 if (ufds[i].revents == POLLIN) {
1136 if (ufds[i].fd == get_property_set_fd())
1138 else if (ufds[i].fd == get_keychord_fd())
1140 else if (ufds[i].fd == get_signal_fd())