Home | History | Annotate | Download | only in init

Lines Matching full:ufds

965     struct pollfd ufds[4];
1090 ufds[fd_count].fd = get_property_set_fd();
1091 ufds[fd_count].events = POLLIN;
1092 ufds[fd_count].revents = 0;
1097 ufds[fd_count].fd = get_signal_fd();
1098 ufds[fd_count].events = POLLIN;
1099 ufds[fd_count].revents = 0;
1104 ufds[fd_count].fd = get_keychord_fd();
1105 ufds[fd_count].events = POLLIN;
1106 ufds[fd_count].revents = 0;
1131 nr = poll(ufds, fd_count, timeout);
1136 if (ufds[i].revents == POLLIN) {
1137 if (ufds[i].fd == get_property_set_fd())
1139 else if (ufds[i].fd == get_keychord_fd())
1141 else if (ufds[i].fd == get_signal_fd())