Searched refs:lwip_poll (Results 1 - 3 of 3) sorted by relevance
/third_party/lwip/src/include/lwip/ |
H A D | sockets.h | 555 #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 D | sockets_stresstest.c | 228 ret = lwip_poll(&pfd, 1, timeout_ms); in sockets_stresstest_wait_readable_poll()
|
/third_party/lwip/src/api/ |
H A D | sockets.c | 2396 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