Home
last modified time | relevance | path

Searched refs:nfds (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dasync_manager.cc190 int nfds = notification_listen_fd_; in setUpFileDescriptorSet() local
197 nfds = std::max(fdp.first, nfds); in setUpFileDescriptorSet()
200 return nfds; in setUpFileDescriptorSet()
234 int nfds = setUpFileDescriptorSet(read_fds); in ThreadRoutine() local
237 int retval = select(nfds + 1, &read_fds, NULL, NULL, NULL); in ThreadRoutine()
/packages/modules/Bluetooth/system/osi/test/fuzzers/fixed_queue/
Dfuzz_fixed_queue.cc48 int nfds = 1; in fdIsAvailable() local
59 return select(nfds, &readfds, &writefds, &exceptfds, &timeout) > 0; in fdIsAvailable()
/packages/modules/Bluetooth/system/vendor_libs/linux/interface/
Dasync_fd_watcher.cc148 int nfds = std::max(notification_listen_fd_, max_read_fd); in ThreadRoutine() local
149 int retval = select(nfds + 1, &read_fds, NULL, NULL, timeout_ptr); in ThreadRoutine()
/packages/modules/adb/
Dsysdeps.h240 extern int adb_poll(adb_pollfd* fds, size_t nfds, int timeout);
721 static inline int adb_poll(adb_pollfd* fds, size_t nfds, int timeout) { in adb_poll() argument
722 return TEMP_FAILURE_RETRY(poll(fds, nfds, timeout)); in adb_poll()
Dsysdeps_win32.cpp606 extern int adb_poll(adb_pollfd* fds, size_t nfds, int timeout) { in adb_poll() argument
612 for (size_t i = 0; i < nfds; ++i) { in adb_poll()
652 for (size_t i = 0; i < nfds; ++i) { in adb_poll()