Searched refs:ufds (Results 1 - 3 of 3) sorted by relevance

/system/core/debuggerd/
H A Dgetevent.cpp31 static struct pollfd* ufds; variable in typeref:struct:pollfd
69 new_ufds = reinterpret_cast<pollfd*>(realloc(ufds, sizeof(ufds[0]) * (nfds + 1)));
74 ufds = new_ufds;
82 ufds[nfds].fd = fd;
83 ufds[nfds].events = POLLIN;
97 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
170 ufds
[all...]
/system/core/toolbox/
H A Dgetevent.c35 static struct pollfd *ufds; variable in typeref:struct:pollfd
363 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
368 ufds = new_ufds;
404 ufds[nfds].fd = fd;
405 ufds[nfds].events = POLLIN;
422 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
612 ufds
[all...]
/system/core/init/
H A Dproperty_service.cpp272 struct pollfd ufds[1]; local
287 ufds[0].fd = s;
288 ufds[0].events = POLLIN;
289 ufds[0].revents = 0;
290 nr = TEMP_FAILURE_RETRY(poll(ufds, 1, timeout_ms));

Completed in 47 milliseconds