Home
last modified time | relevance | path

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

/device/generic/goldfish/radio/libril/
Dril_event.cpp69 static int nfds = 0; variable
142 if (ev->fd+1 == nfds) { in removeWatch()
152 nfds = n + 1; in removeWatch()
153 dlog("~~~~ nfds = %d ~~~~", nfds); in removeWatch()
276 if (ev->fd >= nfds) nfds = ev->fd+1; in ril_event_add()
277 dlog("~~~~ nfds = %d ~~~~", nfds); in ril_event_add()
366 n = select(nfds, &rfds, NULL, NULL, ptv); in ril_event_loop()
/device/google/cuttlefish/guest/hals/ril/libril/
Dril_event.cpp69 static int nfds = 0; variable
142 if (ev->fd+1 == nfds) { in removeWatch()
152 nfds = n + 1; in removeWatch()
153 dlog("~~~~ nfds = %d ~~~~", nfds); in removeWatch()
276 if (ev->fd >= nfds) nfds = ev->fd+1; in ril_event_add()
277 dlog("~~~~ nfds = %d ~~~~", nfds); in ril_event_add()
366 n = select(nfds, &rfds, NULL, NULL, ptv); in ril_event_loop()
/device/linaro/hikey/bluetooth/
Dasync_fd_watcher.cc134 int nfds = std::max(notification_listen_fd_, max_read_fd); in ThreadRoutine() local
135 int retval = select(nfds + 1, &read_fds, NULL, NULL, timeout_ptr); in ThreadRoutine()
/device/google/contexthub/util/nanotool/
Dandroidcontexthub.cpp394 int nfds = 1; in ResetPollFds() local
398 nfds++; in ResetPollFds()
400 return nfds; in ResetPollFds()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
Dselectmodule.c968 int nfds, i; in pyepoll_poll() local
1011 nfds = epoll_wait(self->epfd, evs, maxevents, timeout); in pyepoll_poll() local
1013 if (nfds < 0) { in pyepoll_poll()
1018 elist = PyList_New(nfds); in pyepoll_poll()
1023 for (i = 0; i < nfds; i++) { in pyepoll_poll()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dselectmodule.c968 int nfds, i; in pyepoll_poll() local
1011 nfds = epoll_wait(self->epfd, evs, maxevents, timeout); in pyepoll_poll() local
1013 if (nfds < 0) { in pyepoll_poll()
1018 elist = PyList_New(nfds); in pyepoll_poll()
1023 for (i = 0; i < nfds; i++) { in pyepoll_poll()
/device/generic/goldfish/fingerprint/
Dfingerprint.c732 int nfds = poll(&pfd, 1, 5000); in listenerFunction() local
733 if (nfds < 0) { in listenerFunction()
738 if (!nfds) { in listenerFunction()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dselectmodule.c1002 int nfds, i; in pyepoll_poll() local
1045 nfds = epoll_wait(self->epfd, evs, maxevents, timeout); in pyepoll_poll() local
1047 if (nfds < 0) { in pyepoll_poll()
1052 elist = PyList_New(nfds); in pyepoll_poll()
1057 for (i = 0; i < nfds; i++) { in pyepoll_poll()
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
DSysCalls.c757 nfds_t nfds, in poll() argument
806 pEnd = &pPollFD [ nfds ]; in poll()