Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dasync_manager.cc210 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/
Dfuzz_fixed_queue.cc48 int nfds = 1; in fdIsAvailable() local
59 return select(nfds, &readfds, &writefds, &exceptfds, &timeout) > 0; in fdIsAvailable()
/packages/modules/Connectivity/staticlibs/netd/libnetdutils/
DSyscalls.cpp118 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/
Dsysdeps.h239 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()
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()
/packages/modules/Connectivity/staticlibs/netd/libnetdutils/include/netdutils/
DMockSyscalls.h51 MOCK_CONST_METHOD3(ppoll, StatusOr<int>(pollfd* fds, nfds_t nfds, double timeout));
DSyscalls.h66 virtual StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const = 0;