Home | History | Annotate | Download | only in avahi-common

Lines Matching defs:pollfd

42     struct pollfd pollfd;
68 struct pollfd* pollfds;
152 w->pollfd.fd = fd;
153 w->pollfd.events = event;
154 w->pollfd.revents = 0;
175 w->pollfd.events = events;
179 w->simple_poll->pollfds[w->idx] = w->pollfd;
392 struct pollfd *n;
396 if (!(n = avahi_realloc(s->pollfds, sizeof(struct pollfd) * s->max_pollfds)))
415 s->pollfds[w->idx = idx++] = w->pollfd;
585 w->callback(w, w->pollfd.fd, s->pollfds[w->idx].revents, w->userdata);
626 static int system_poll(struct pollfd *ufds, unsigned int nfds, int timeout, AVAHI_GCC_UNUSED void *userdata) {