Home | History | Annotate | Download | only in tests

Lines Matching refs:pfd

46 			if (member != pfd->member)	\
54 print_pollfd_entering(const struct pollfd *const pfd)
56 tprintf("{fd=%d", pfd->fd);
57 if (pfd->fd >= 0) {
59 short events = pfd->events;
61 if (pfd->events) {
87 print_pollfd_array_entering(const struct pollfd *const pfd,
98 tprintf("%p", &pfd[i]);
105 print_pollfd_entering(&pfd[i]);
111 print_pollfd_exiting(const struct pollfd *const pfd,
115 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
126 tprintf("{fd=%d, revents=", pfd->fd);
127 short revents = pfd->revents;
151 print_pollfd_array_exiting(const struct pollfd *const pfd,
159 print_pollfd_exiting(&pfd[i], &seen, abbrev);