Searched refs:nfds (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/tools/rootcanal/model/setup/ |
D | async_manager.cc | 210 int nfds = notification_listen_fd_; in setUpFileDescriptorSet() local 217 nfds = std::max(fdp.first, nfds); in setUpFileDescriptorSet() 220 return nfds; in setUpFileDescriptorSet() 254 int nfds = setUpFileDescriptorSet(read_fds); in ThreadRoutine() local 257 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/Connectivity/staticlibs/netd/libnetdutils/ |
D | Syscalls.cpp | 118 StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const override { in ppoll() argument 122 auto rv = syscallRetry(::ppoll, fds, nfds, &ts, nullptr); in ppoll()
|
/packages/modules/adb/ |
D | sysdeps.h | 239 extern int adb_poll(adb_pollfd* fds, size_t nfds, int timeout); 720 static inline int adb_poll(adb_pollfd* fds, size_t nfds, int timeout) { in adb_poll() argument 721 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()
|
/packages/modules/Connectivity/staticlibs/netd/libnetdutils/include/netdutils/ |
D | MockSyscalls.h | 51 MOCK_CONST_METHOD3(ppoll, StatusOr<int>(pollfd* fds, nfds_t nfds, double timeout));
|
D | Syscalls.h | 66 virtual StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const = 0;
|