Searched refs:fdset (Results 1 - 7 of 7) sorted by relevance

/external/curl/lib/
H A Dwarnless.h88 int curlx_FD_ISSET(int fd, fd_set *fdset);
90 void curlx_FD_SET(int fd, fd_set *fdset);
92 void curlx_FD_ZERO(fd_set *fdset);
H A Dwarnless.c498 int curlx_FD_ISSET(int fd, fd_set *fdset) argument
502 return FD_ISSET(fd, fdset);
506 void curlx_FD_SET(int fd, fd_set *fdset) argument
510 FD_SET(fd, fdset);
514 void curlx_FD_ZERO(fd_set *fdset) argument
518 FD_ZERO(fdset);
/external/libvncserver/examples/
H A D1instance.c51 fd_set fdset; local
54 FD_ZERO(&fdset);
55 FD_SET(str->fd,&fdset);
59 num_fds=select(str->fd+1,&fdset,NULL,NULL,&tv);
/external/syslinux/gpxe/src/arch/i386/interface/pxe/
H A Dpxe_file.c115 fd_set fdset; local
120 FD_ZERO ( &fdset );
121 FD_SET ( file_select->FileHandle, &fdset );
122 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
/external/curl/tests/libtest/
H A Dlib582.c188 static void updateFdSet(struct Sockets* sockets, fd_set* fdset, argument
193 FD_SET(sockets->sockets[i], fdset);
214 static void checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset, argument
219 if(FD_ISSET(sockets->sockets[i], fdset)) {
/external/syslinux/gpxe/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 ) ) {
/external/mksh/src/
H A Dfuncs.c1724 fd_set fdset; local
1726 FD_ZERO(&fdset);
1727 FD_SET((unsigned int)fd, &fdset);
1736 switch (select(fd + 1, &fdset, NULL, NULL, &tv)) {

Completed in 370 milliseconds