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

/vbox/src/VBox/Frontends/VBoxSDL/
H A DHelper.cpp66 fd_set fdset; local
67 FD_ZERO(&fdset);
68 FD_SET(eqFD, &fdset);
69 int n = select(eqFD + 1, &fdset, NULL, NULL, NULL);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_file.c114 fd_set fdset; local
119 FD_ZERO ( &fdset );
120 FD_SET ( file_select->FileHandle, &fdset );
121 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dhijack.c299 fd_set fdset; local
314 FD_ZERO ( &fdset );
315 FD_SET ( fd, &fdset );
316 FD_SET ( hijack.fd, &fdset );
317 if ( select ( ( max_fd + 1 ), &fdset, NULL, NULL, 0 ) < 0 ) {
322 if ( FD_ISSET ( fd, &fdset ) ) {
329 if ( FD_ISSET ( hijack.fd, &fdset ) ) {

Completed in 444 milliseconds