Searched refs:ufds (Results 1 - 4 of 4) 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.c16 static struct pollfd *ufds; variable in typeref:struct:pollfd
344 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
349 ufds = new_ufds;
385 ufds[nfds].fd = fd;
386 ufds[nfds].events = POLLIN;
403 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
593 ufds
[all...]
/system/core/init/
H A Dinit.c1004 struct pollfd ufds[4]; local
1118 ufds[fd_count].fd = get_property_set_fd();
1119 ufds[fd_count].events = POLLIN;
1120 ufds[fd_count].revents = 0;
1125 ufds[fd_count].fd = get_signal_fd();
1126 ufds[fd_count].events = POLLIN;
1127 ufds[fd_count].revents = 0;
1132 ufds[fd_count].fd = get_keychord_fd();
1133 ufds[fd_count].events = POLLIN;
1134 ufds[fd_coun
[all...]
H A Dproperty_service.c270 struct pollfd ufds[1]; local
285 ufds[0].fd = s;
286 ufds[0].events = POLLIN;
287 ufds[0].revents = 0;
288 nr = TEMP_FAILURE_RETRY(poll(ufds, 1, timeout_ms));

Completed in 2285 milliseconds