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

/system/core/toolbox/
H A Dgetevent.c36 static struct pollfd *ufds; variable in typeref:struct:pollfd
362 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
367 ufds = new_ufds;
403 ufds[nfds].fd = fd;
404 ufds[nfds].events = POLLIN;
421 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
611 ufds
[all...]
/system/core/init/
H A Dproperty_service.cpp330 struct pollfd ufds[1]; local
331 ufds[0].fd = socket_;
332 ufds[0].events = POLLIN;
333 ufds[0].revents = 0;
336 int nr = poll(ufds, 1, *timeout_ms);

Completed in 7812 milliseconds