Home | History | Annotate | Download | only in server

Lines Matching defs:ufds

413 		struct pollfd *ufds;
422 ufds = (struct pollfd *)malloc(sizeof(struct pollfd) * count);
423 if (ufds == NULL)
426 rc = snd_pcm_poll_descriptors(aio->handle, ufds, count);
431 free(ufds);
436 if (ufds[i].events & POLLIN) {
437 aio->poll_fd = ufds[i].fd;
441 free(ufds);