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

  /dalvik/vm/jdwp/
JdwpAdb.c 518 int maxfd = -1; local
527 if (maxfd < fd)
528 maxfd = fd;
533 if (maxfd < fd)
534 maxfd = fd;
539 if (maxfd < fd)
540 maxfd = fd;
545 if (maxfd < 0) {
562 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL);
JdwpSocket.c 674 int maxfd; local
677 maxfd = netState->listenSock;
678 if (netState->clientSock > maxfd)
679 maxfd = netState->clientSock;
680 if (netState->wakePipe[0] > maxfd)
681 maxfd = netState->wakePipe[0];
683 if (maxfd < 0) {
716 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL);
  /development/simulator/app/
PropertyServer.cpp 385 int maxfd; local
392 maxfd = mListenSock;
398 if (maxfd < fd)
399 maxfd = fd;
402 cc = select(maxfd+1, &readfds, NULL, NULL, NULL);
  /external/bluetooth/glib/glib/
gpoll.c 383 int maxfd = 0; local
398 if (f->fd > maxfd && (f->events & (G_IO_IN|G_IO_OUT|G_IO_PRI)))
399 maxfd = f->fd;
405 ready = select (maxfd + 1, &rset, &wset, &xset,
  /external/dropbear/
dbutil.h 51 int *socks, unsigned int sockcount, char **errstring, int *maxfd);
cli-tcpfwd.c 203 ses.maxfd = MAX(ses.maxfd, sock);
listener.c 115 ses.maxfd = MAX(ses.maxfd, socks[j]);
svr-tcpfwd.c 274 ses.maxfd = MAX(ses.maxfd, sock);
tcp-accept.c 122 DROPBEAR_MAX_SOCKS, &errstring, &ses.maxfd);
svr-main.c 33 static size_t listensockets(int *sock, size_t sockcount, int *maxfd);
395 static size_t listensockets(int *sock, size_t sockcount, int *maxfd) {
410 &errstring, maxfd);
session.h 98 int maxfd; /* the maximum file descriptor to check with select() */ member in struct:sshsession
svr-chansession.c 715 ses.maxfd = MAX(ses.maxfd, channel->writefd);
716 ses.maxfd = MAX(ses.maxfd, channel->readfd);
717 ses.maxfd = MAX(ses.maxfd, channel->errfd);
836 ses.maxfd = MAX(ses.maxfd, chansess->master);
890 for (i = 3; i <= (unsigned int)ses.maxfd; i++) {
common-session.c 60 ses.maxfd = sock;
149 val = select(ses.maxfd+1, &readfd, &writefd, NULL, &timeout);
dbutil.c 187 int *socks, unsigned int sockcount, char **errstring, int *maxfd) {
273 *maxfd = MAX(*maxfd, sock);
302 /* TODO: maxfd */
common-channel.c 963 ses.maxfd = MAX(ses.maxfd, fd);
  /external/dnsmasq/src/
dnsmasq.c 572 int maxfd = -1; local
583 if ((t.tv_sec = set_dns_listeners(now, &rset, &maxfd)) != 0)
589 set_android_listeners(&rset, &maxfd);
602 set_dbus_listeners(&maxfd, &rset, &wset, &eset);
609 bump_maxfd(daemon->dhcpfd, &maxfd);
615 bump_maxfd(daemon->netlinkfd, &maxfd);
619 bump_maxfd(piperead, &maxfd);
628 bump_maxfd(daemon->helperfd, &maxfd);
638 set_log_writer(&wset, &maxfd);
640 if (select(maxfd+1, &rset, &wset, &eset, tp) < 0
1289 int maxfd = fd; local
    [all...]
  /external/bluetooth/bluez/test/
hstest.c 154 int maxfd, sel, rlen, wlen; local
250 maxfd = (rd > sd) ? rd : sd;
261 if ((sel = select(maxfd + 1, &rfds, NULL, NULL, &timeout)) > 0) {
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 329 int maxfd = 0; local
341 curl_multi_fdset(m_curlMultiHandle, &fdread, &fdwrite, &fdexcep, &maxfd);
345 if (maxfd >= 0)
346 rc = ::select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);

Completed in 215 milliseconds