HomeSort by relevance Sort by last modified time
    Searched refs:fdset (Results 1 - 6 of 6) sorted by null

  /external/curl/lib/
warnless.h 87 int curlx_FD_ISSET(int fd, fd_set *fdset);
89 void curlx_FD_SET(int fd, fd_set *fdset);
91 void curlx_FD_ZERO(fd_set *fdset);
warnless.c 460 int curlx_FD_ISSET(int fd, fd_set *fdset)
464 return FD_ISSET(fd, fdset);
468 void curlx_FD_SET(int fd, fd_set *fdset)
472 FD_SET(fd, fdset);
476 void curlx_FD_ZERO(fd_set *fdset)
480 FD_ZERO(fdset);
  /external/curl/tests/libtest/
lib582.c 188 static void updateFdSet(struct Sockets* sockets, fd_set* fdset,
193 FD_SET(sockets->sockets[i], fdset);
214 static void checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset,
219 if(FD_ISSET(sockets->sockets[i], fdset)) {
  /external/openssh/
sshconnect.c 335 fd_set *fdset; local
359 fdset = xcalloc(howmany(sockfd + 1, NFDBITS),
361 FD_SET(sockfd, fdset);
365 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
400 free(fdset);
557 fd_set *fdset; local
560 fdset = xcalloc(1, fdsetsz);
579 FD_SET(connection_in, fdset);
580 rc = select(connection_in + 1, fdset, NULL,
581 fdset, &t_remaining)
    [all...]
sshd.c 1148 fd_set *fdset; local
1158 fdset = NULL;
1175 free(fdset);
1176 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
1180 FD_SET(listen_socks[i], fdset);
1183 FD_SET(startup_pipes[i], fdset);
1186 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1202 FD_ISSET(startup_pipes[i], fdset)) {
1214 if (!FD_ISSET(listen_socks[i], fdset))
    [all...]
  /external/mksh/src/
funcs.c 1724 fd_set fdset; local
    [all...]

Completed in 154 milliseconds