Searched refs:nfds (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/tools/rootcanal/model/setup/ |
D | async_manager.cc | 190 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/ |
D | fuzz_fixed_queue.cc | 48 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/ |
D | async_fd_watcher.cc | 148 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/ |
D | sysdeps.h | 240 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()
|
D | sysdeps_win32.cpp | 606 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()
|