Searched refs:aFDs (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/Network/
H A DDrvVDE.cpp319 struct pollfd aFDs[2]; local
320 aFDs[0].fd = vde_datafd(pThis->pVdeConn);
321 aFDs[0].events = POLLIN | POLLPRI;
322 aFDs[0].revents = 0;
323 aFDs[1].fd = RTPipeToNative(pThis->hPipeRead);
324 aFDs[1].events = POLLIN | POLLPRI | POLLERR | POLLHUP;
325 aFDs[1].revents = 0;
328 int rc = poll(&aFDs[0], RT_ELEMENTS(aFDs), -1 /* infinite */);
336 && (aFDs[
[all...]
H A DDrvTAP.cpp346 struct pollfd aFDs[2]; local
347 aFDs[0].fd = RTFileToNative(pThis->hFileDevice);
348 aFDs[0].events = POLLIN | POLLPRI;
349 aFDs[0].revents = 0;
350 aFDs[1].fd = RTPipeToNative(pThis->hPipeRead);
351 aFDs[1].events = POLLIN | POLLPRI | POLLERR | POLLHUP;
352 aFDs[1].revents = 0;
355 int rc = poll(&aFDs[0], RT_ELEMENTS(aFDs), -1 /* infinite */);
363 && (aFDs[
[all...]
/vbox/src/VBox/Devices/Serial/
H A DDrvHostSerial.cpp686 struct pollfd aFDs[2];
687 aFDs[0].fd = RTFileToNative(pThis->hDeviceFile);
688 aFDs[0].events = POLLIN;
689 aFDs[0].revents = 0;
690 aFDs[1].fd = RTPipeToNative(pThis->hWakeupPipeR);
691 aFDs[1].events = POLLIN | POLLERR | POLLHUP;
692 aFDs[1].revents = 0;
693 rc = poll(aFDs, RT_ELEMENTS(aFDs), -1);
702 Log(("rc=%d revents=%#x,%#x errno=%p %s\n", rc, aFDs[
[all...]
/vbox/src/VBox/Devices/Parallel/
H A DDrvHostParallel.cpp797 struct pollfd aFDs[2]; local
806 aFDs[0].fd = RTFileToNative(pThis->hFileDevice);
807 aFDs[0].events = POLLIN;
808 aFDs[0].revents = 0;
809 aFDs[1].fd = RTPipeToNative(pThis->hWakeupPipeR);
810 aFDs[1].events = POLLIN | POLLERR | POLLHUP;
811 aFDs[1].revents = 0;
812 rc = poll(aFDs, RT_ELEMENTS(aFDs), -1);
821 if (rc > 0 && aFDs[
[all...]

Completed in 66 milliseconds