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

/vbox/src/VBox/Main/glue/
H A DNativeEventQueue.cpp331 fd_set fdsetR; local
332 FD_ZERO(&fdsetR);
333 FD_SET(fd, &fdsetR);
335 fd_set fdsetE = fdsetR;
348 int rc = select(fd + 1, &fdsetR, NULL, &fdsetE, ptv);
/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp1400 fd_set fdsetR; local
1401 FD_ZERO(&fdsetR);
1402 FD_SET(pThis->hNative, &fdsetR);
1404 fd_set fdsetE = fdsetR;
1408 rc = select(fdMax, &fdsetR, NULL, &fdsetE, NULL);
1414 rc = select(fdMax, &fdsetR, NULL, &fdsetE, &timeout);
1447 fd_set fdsetR; local
1450 FD_ZERO(&fdsetR);
1455 FD_SET(pThis->hNative, &fdsetR);
1463 rc = select(fdMax, &fdsetR,
[all...]
/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp850 fd_set fdsetR; local
851 FD_ZERO(&fdsetR);
852 FD_SET((uintptr_t)pSocketInt->hSock, &fdsetR);
853 fd_set fdsetE = fdsetR;
857 rc = lwip_select(pSocketInt->hSock + 1, &fdsetR, NULL, &fdsetE, NULL);
863 rc = lwip_select(pSocketInt->hSock + 1, &fdsetR, NULL, &fdsetE, &timeout);

Completed in 61 milliseconds