Home | History | Annotate | Download | only in strace

Lines Matching defs:fds

39 	const struct pollfd *fds = elem_buf;
42 printfd(tcp, fds->fd);
43 if (fds->fd >= 0) {
45 printflags(pollflags, (unsigned short) fds->events, "POLL???");
57 struct pollfd fds;
59 print_array(tcp, addr, nfds, &fds, sizeof(fds),
67 struct pollfd fds;
69 const unsigned long size = sizeof(fds) * nfds;
89 size / sizeof(fds) != nfds || end < start)
94 for (printed = 0, cur = start; cur < end; cur += sizeof(fds)) {
95 if (umove(tcp, cur, &fds) < 0) {
103 if (!fds.revents)
116 xsprintf(fdstr, fmt, fds.fd);
119 (unsigned short) fds.revents);