Home | History | Annotate | Download | only in debuggerd

Lines Matching refs:nfds

33 static int nfds;
69 new_ufds = reinterpret_cast<pollfd*>(realloc(ufds, sizeof(ufds[0]) * (nfds + 1)));
76 device_names, sizeof(device_names[0]) * (nfds + 1)));
82 ufds[nfds].fd = fd;
83 ufds[nfds].events = POLLIN;
84 device_names[nfds] = strdup(device);
85 nfds++;
92 for (i = 1; i < nfds; i++) {
94 int count = nfds - i - 1;
98 nfds--;
169 nfds = 1;
187 for (i = 0; i < nfds; i++) {
192 nfds = 0;
201 pollres = poll(ufds, nfds, timeout);
208 for (i = 1; i < nfds; i++) {