HomeSort by relevance Sort by last modified time
    Searched defs:ufds (Results 1 - 3 of 3) sorted by null

  /system/core/debuggerd/
getevent.c 15 static struct pollfd *ufds; variable in typeref:struct:pollfd
57 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
62 ufds = new_ufds;
69 ufds[nfds].fd = fd;
70 ufds[nfds].events = POLLIN;
85 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
165 ufds = calloc(1, sizeof(ufds[0]))
    [all...]
  /system/core/toolbox/
getevent.c 14 static struct pollfd *ufds; variable in typeref:struct:pollfd
165 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
170 ufds = new_ufds;
199 ufds[nfds].fd = fd;
200 ufds[nfds].events = POLLIN;
217 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count);
394 ufds = calloc(1, sizeof(ufds[0]))
    [all...]
  /system/core/init/
init.c 817 struct pollfd ufds[4]; local
971 ufds[0].fd = device_fd;
972 ufds[0].events = POLLIN;
973 ufds[1].fd = property_set_fd;
974 ufds[1].events = POLLIN;
975 ufds[2].fd = signal_recv_fd;
976 ufds[2].events = POLLIN;
980 ufds[3].fd = keychord_fd;
981 ufds[3].events = POLLIN;
984 ufds[3].events = 0
    [all...]

Completed in 210 milliseconds