Searched refs:FD_ISSET (Results 1 - 25 of 39) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dposix_io.h71 FD_ISSET ( int fd, fd_set *set ) { function
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXpoll.h110 #ifndef FD_ISSET
111 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS))) macro
184 if (FD_ISSET(XFD_FD(b1,__i), b2)) \
193 if (!FD_ISSET(XFD_FD(b2,__i), dst)) \
210 if (XFD_SETCOUNT(set) < FD_SETSIZE && !FD_ISSET(fd,set)) \
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dfd_set.h70 #define FD_ISSET(n, p) \ macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxwrap.c203 if (rd && FD_ISSET(osfd, rd)) {
206 if (wr && FD_ISSET(osfd, wr)) {
209 if (ex && FD_ISSET(osfd, ex)) {
230 && FD_ISSET(_pr_xt_hack_fd, rd) && PR_XIsLocked()
H A Duxpoll.c448 if (FD_ISSET(osfd, &rd))
455 if (FD_ISSET(osfd, &wt))
462 if (FD_ISSET(osfd, &ex)) out_flags |= PR_POLL_EXCEPT;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2poll.c307 if (FD_ISSET(osfd, &rd))
319 if (FD_ISSET(osfd, &wt))
331 if (FD_ISSET(osfd, &ex))
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32poll.c297 if (FD_ISSET(osfd, &rd))
304 if (FD_ISSET(osfd, &wt))
311 if (FD_ISSET(osfd, &ex)) out_flags |= PR_POLL_EXCEPT;
H A Dw95sock.c526 if (FD_ISSET((SOCKET)osfd, &ex))
541 if (FD_ISSET((SOCKET)osfd, &rd_wr))
606 if (FD_ISSET((SOCKET)osfd, &ex))
621 if (FD_ISSET((SOCKET)osfd, &rd_wr))
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdpsnd_alsa.c134 if (FD_ISSET(f->fd, rfds))
136 if (FD_ISSET(f->fd, wfds))
158 if (FD_ISSET(f->fd, rfds))
160 if (FD_ISSET(f->fd, wfds))
H A Dctrl.c386 if (FD_ISSET(ctrlsock, rfds))
405 if (FD_ISSET(it->sock, rfds))
H A Drdpsnd_oss.c95 if (FD_ISSET(dsp_fd, wfds))
97 if (FD_ISSET(dsp_fd, rfds))
H A Drdpsnd_sun.c123 if (FD_ISSET(dsp_fd, wfds))
125 if (FD_ISSET(dsp_fd, rfds))
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dsockets.c1131 if (readset_in && FD_ISSET(i, readset_in) && ((lastdata != NULL) || (rcvevent > 0))) {
1137 if (writeset_in && FD_ISSET(i, writeset_in) && (sendevent != 0)) {
1143 if (exceptset_in && FD_ISSET(i, exceptset_in) && (errevent != 0)) {
1227 if ((readset && FD_ISSET(i, readset)) ||
1228 (writeset && FD_ISSET(i, writeset)) ||
1229 (exceptset && FD_ISSET(i, exceptset))) {
1259 if ((readset && FD_ISSET(i, readset)) ||
1260 (writeset && FD_ISSET(i, writeset)) ||
1261 (exceptset && FD_ISSET(i, exceptset))) {
1400 if (scb->readset && FD_ISSET(
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacsocket.h125 #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS))) macro
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinsock.h60 # undef FD_ISSET macro
66 # define FD_ISSET Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library macro
80 # undef FD_ISSET macro
105 # undef FD_ISSET macro
507 #define FD_ISSET(fd, set) __WSAFDIsSet((SOCKET)(fd), (fd_set*)(set)) macro
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinsock.h60 # undef FD_ISSET macro
66 # define FD_ISSET Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library macro
80 # undef FD_ISSET macro
105 # undef FD_ISSET macro
509 #define FD_ISSET(fd, set) __WSAFDIsSet((SOCKET)(fd), (fd_set*)(set)) macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbfile.c732 if (FD_ISSET(osfd, &rd))
739 if (FD_ISSET(osfd, &wt))
746 if (FD_ISSET(osfd, &ex)) out_flags |= PR_POLL_EXCEPT;
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dhijack.c322 if ( FD_ISSET ( fd, &fdset ) ) {
329 if ( FD_ISSET ( hijack.fd, &fdset ) ) {
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dsockets.c631 if (FD_ISSET(i, readset))
642 if (FD_ISSET(i, writeset))
876 if (scb->readset && FD_ISSET(s, scb->readset))
879 if (scb->writeset && FD_ISSET(s, scb->writeset))
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsockets.h201 #define FD_ISSET(n,p) ((p)->fd_bits[(n)/8] & (1 << ((n) & 7))) macro
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dposix_io.c230 if ( ! FD_ISSET ( fd, readfds ) )
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dselect2.c268 if (FD_ISSET(osfd, &rdset)) {
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dudptcpip.c521 else if ( FD_ISSET(conn->udp_socket, &read_fds ) )
558 if ( !FD_ISSET( sock, &read_fds ) )
/vbox/src/VBox/RDP/client-1.8.3/vrdp/
H A Drdpusb.c902 if (FD_ISSET(fd, rfds))
904 if (FD_ISSET(fd, wfds))
/vbox/src/recompiler/tests/
H A Dlinux-test.c385 if (FD_ISSET(fds[0], &rfds)) {
391 if (FD_ISSET(fds[1], &wfds)) {

Completed in 115 milliseconds

12