Home | History | Annotate | Download | only in init

Lines Matching refs:ufds

854     struct pollfd ufds[4];
958 ufds[fd_count].fd = get_property_set_fd();
959 ufds[fd_count].events = POLLIN;
960 ufds[fd_count].revents = 0;
965 ufds[fd_count].fd = get_signal_fd();
966 ufds[fd_count].events = POLLIN;
967 ufds[fd_count].revents = 0;
972 ufds[fd_count].fd = get_keychord_fd();
973 ufds[fd_count].events = POLLIN;
974 ufds[fd_count].revents = 0;
999 nr = poll(ufds, fd_count, timeout);
1004 if (ufds[i].revents == POLLIN) {
1005 if (ufds[i].fd == get_property_set_fd())
1007 else if (ufds[i].fd == get_keychord_fd())
1009 else if (ufds[i].fd == get_signal_fd())