Home | History | Annotate | Download | only in toolbox

Lines Matching full:ufds

16 static struct pollfd *ufds;
344 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
349 ufds = new_ufds;
385 ufds[nfds].fd = fd;
386 ufds[nfds].events = POLLIN;
403 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
593 ufds = calloc(1, sizeof(ufds[0]));
594 ufds[0].fd = inotify_init();
595 ufds[0].events = POLLIN;
607 res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE);
622 res = ioctl(ufds[i].fd, EVIOCGSW(1), &sw);
637 poll(ufds, nfds, -1);
639 if(ufds[0].revents & POLLIN) {
640 read_notify(device_path, ufds[0].fd, print_flags);
643 if(ufds[i].revents) {
644 if(ufds[i].revents & POLLIN) {
645 res = read(ufds[i].fd, &event, sizeof(event));