Searched defs:pollinfo (Results 1 - 1 of 1) sorted by relevance

/external/libpcap/
H A Dpcap-linux.c4352 struct pollfd pollinfo; local
4355 pollinfo.fd = handle->fd;
4356 pollinfo.events = POLLIN;
4387 ret = poll(&pollinfo, 1, timeout);
4394 (pollinfo.revents & (POLLHUP|POLLRDHUP|POLLERR|POLLNVAL))) {
4400 if (pollinfo.revents & (POLLHUP | POLLRDHUP)) {
4406 if (pollinfo.revents & POLLERR) {
4438 if (pollinfo.revents & POLLNVAL) {

Completed in 96 milliseconds