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

/vbox/src/VBox/Main/glue/
H A DNativeEventQueue.cpp335 fd_set fdsetE = fdsetR; local
348 int rc = select(fd + 1, &fdsetR, NULL, &fdsetE, ptv);
/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp1404 fd_set fdsetE = fdsetR; local
1408 rc = select(fdMax, &fdsetR, NULL, &fdsetE, NULL);
1414 rc = select(fdMax, &fdsetR, NULL, &fdsetE, &timeout);
1449 fd_set fdsetE; local
1452 FD_ZERO(&fdsetE);
1459 FD_SET(pThis->hNative, &fdsetE);
1463 rc = select(fdMax, &fdsetR, &fdsetW, &fdsetE, NULL);
1469 rc = select(fdMax, &fdsetR, &fdsetW, &fdsetE, &timeout);
1477 if (FD_ISSET(pThis->hNative, &fdsetE))
/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp853 fd_set fdsetE = fdsetR; local
857 rc = lwip_select(pSocketInt->hSock + 1, &fdsetR, NULL, &fdsetE, NULL);
863 rc = lwip_select(pSocketInt->hSock + 1, &fdsetR, NULL, &fdsetE, &timeout);

Completed in 87 milliseconds