Home
last modified time | relevance | path

Searched refs:pSocketsToSelect (Results 1 – 2 of 2) sorted by relevance

/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/Socket/
DSocket.cpp143 int ASocket::SelectSockets(const ASocket::Socket* pSocketsToSelect, const size_t count, in SelectSockets() argument
146 if (!pSocketsToSelect || count == 0) in SelectSockets()
168 FD_SET(pSocketsToSelect[i], &rset); in SelectSockets()
170 if (pSocketsToSelect[i] > max_fd) in SelectSockets()
172 max_fd = pSocketsToSelect[i]; in SelectSockets()
185 if (FD_ISSET(pSocketsToSelect[i], &rset)) in SelectSockets()
DSocket.h75 static int SelectSockets(const Socket* pSocketsToSelect, const size_t count,