Searched defs:nfds (Results 1 - 3 of 3) sorted by last modified time

/system/core/adb/
H A Dsysdeps_win32.cpp527 extern int adb_poll(adb_pollfd* fds, size_t nfds, int timeout) { argument
532 for (size_t i = 0; i < nfds; ++i) {
567 for (size_t i = 0; i < nfds; ++i) {
/system/core/toolbox/
H A Dgetevent.c38 static int nfds; variable
362 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
368 new_device_names = realloc(device_names, sizeof(device_names[0]) * (nfds + 1));
376 printf("add device %d: %s\n", nfds, device);
403 ufds[nfds].fd = fd;
404 ufds[nfds].events = POLLIN;
405 device_names[nfds] = strdup(device);
406 nfds++;
414 for(i = 1; i < nfds; i++) {
416 int count = nfds
[all...]
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dasync_manager.cc193 int nfds = notification_listen_fd_; local
200 nfds = std::max(fdp.first, nfds);
203 return nfds;
241 int nfds = setUpFileDescriptorSet(read_fds); local
244 int retval = select(nfds + 1, &read_fds, NULL, NULL, NULL);

Completed in 84 milliseconds