Home | History | Annotate | Download | only in adb

Lines Matching full:sockets

34 #include <cutils/sockets.h>
636 // non-blocking sockets can cause an error code of WSAEWOULDBLOCK and
667 std::vector<WSAPOLLFD> sockets;
680 sockets.push_back(wsapollfd);
685 if (sockets.empty()) {
689 int result = WSAPoll(sockets.data(), sockets.size(), timeout);
696 for (size_t i = 0; i < sockets.size(); ++i) {
697 original[i]->revents = sockets[i].revents;