Searched refs:fdset (Results 1 – 9 of 9) sorted by relevance
/external/c-ares/ |
D | ares_nowarn.c | 140 int aresx_FD_ISSET(int fd, fd_set *fdset) in aresx_FD_ISSET() argument 144 return FD_ISSET(fd, fdset); in aresx_FD_ISSET() 148 void aresx_FD_SET(int fd, fd_set *fdset) in aresx_FD_SET() argument 152 FD_SET(fd, fdset); in aresx_FD_SET() 156 void aresx_FD_ZERO(fd_set *fdset) in aresx_FD_ZERO() argument 160 FD_ZERO(fdset); in aresx_FD_ZERO()
|
D | ares_nowarn.h | 30 int aresx_FD_ISSET(int fd, fd_set *fdset); 32 void aresx_FD_SET(int fd, fd_set *fdset); 34 void aresx_FD_ZERO(fd_set *fdset);
|
/external/curl/lib/ |
D | warnless.c | 375 int curlx_FD_ISSET(int fd, fd_set *fdset) in curlx_FD_ISSET() argument 379 return FD_ISSET(fd, fdset); in curlx_FD_ISSET() 383 void curlx_FD_SET(int fd, fd_set *fdset) in curlx_FD_SET() argument 387 FD_SET(fd, fdset); in curlx_FD_SET() 391 void curlx_FD_ZERO(fd_set *fdset) in curlx_FD_ZERO() argument 395 FD_ZERO(fdset); in curlx_FD_ZERO()
|
D | warnless.h | 82 int curlx_FD_ISSET(int fd, fd_set *fdset); 84 void curlx_FD_SET(int fd, fd_set *fdset); 86 void curlx_FD_ZERO(fd_set *fdset);
|
/external/libvncserver/examples/ |
D | 1instance.c | 51 fd_set fdset; in get_next_message() local 54 FD_ZERO(&fdset); in get_next_message() 55 FD_SET(str->fd,&fdset); in get_next_message() 59 num_fds=select(str->fd+1,&fdset,NULL,NULL,&tv); in get_next_message()
|
/external/curl/tests/libtest/ |
D | lib582.c | 188 static void updateFdSet(struct Sockets* sockets, fd_set* fdset, in updateFdSet() argument 193 FD_SET(sockets->sockets[i], fdset); in updateFdSet() 214 static void checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset, in checkFdSet() argument 219 if (FD_ISSET(sockets->sockets[i], fdset)) { in checkFdSet()
|
/external/netperf/src/ |
D | netserver.c | 637 set_fdset(struct listen_elt *list, fd_set *fdset) { in set_fdset() argument 642 FD_ZERO(fdset); in set_fdset() 651 fdset); in set_fdset() 666 FD_SET(temp->fd,fdset); in set_fdset()
|
/external/mksh/src/ |
D | funcs.c | 1982 fd_set fdset; in c_read() local 1984 FD_ZERO(&fdset); in c_read() 1985 FD_SET((unsigned int)fd, &fdset); in c_read() 1994 switch (select(fd + 1, &fdset, NULL, NULL, &tv)) { in c_read()
|
/external/curl/ |
D | CHANGES.0 | 134 curl_multi_fdset to obtain an updated fdset to select or epoll on. For https 138 never obtain a valid fdset, and thus not drive the multi handle, resulting 3211 is set in fdset.events" (http://curl.haxx.se/bug/view.cgi?id=2015126) which
|