Home
last modified time | relevance | path

Searched refs:lwip_poll (Results 1 - 3 of 3) sorted by relevance

/third_party/lwip/src/include/lwip/
H A Dsockets.h555 #define lwip_poll poll macro
604 int lwip_poll(struct pollfd *fds, nfds_t nfds, int timeout);
672 #define poll(fds,nfds,timeout) lwip_poll(fds,nfds,timeout)
/third_party/lwip/test/sockets/
H A Dsockets_stresstest.c228 ret = lwip_poll(&pfd, 1, timeout_ms); in sockets_stresstest_wait_readable_poll()
/third_party/lwip/src/api/
H A Dsockets.c2396 lwip_poll(struct pollfd *fds, nfds_t nfds, int timeout) in lwip_poll() function
2405 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_poll(%p, %d, %d)\n", in lwip_poll()
2407 LWIP_ERROR("lwip_poll: invalid fds", ((fds != NULL && nfds > 0) || (fds == NULL && nfds == 0)), in lwip_poll()
2426 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_poll: no timeout, returning 0\n")); in lwip_poll()
2498 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_poll: timeout expired\n")); in lwip_poll()
2503 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_poll: nready=%d\n", nready)); in lwip_poll()
2512 * lwip_poll.

Completed in 8 milliseconds