Home
last modified time | relevance | path

Searched refs:maxfd (Results 1 – 2 of 2) sorted by relevance

/dalvik/vm/jdwp/
DJdwpAdb.cpp513 int maxfd = -1; in processIncoming() local
522 if (maxfd < fd) in processIncoming()
523 maxfd = fd; in processIncoming()
528 if (maxfd < fd) in processIncoming()
529 maxfd = fd; in processIncoming()
534 if (maxfd < fd) in processIncoming()
535 maxfd = fd; in processIncoming()
540 if (maxfd < 0) { in processIncoming()
557 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL); in processIncoming()
DJdwpSocket.cpp671 int maxfd; in processIncoming() local
674 maxfd = netState->listenSock; in processIncoming()
675 if (netState->clientSock > maxfd) in processIncoming()
676 maxfd = netState->clientSock; in processIncoming()
677 if (netState->wakePipe[0] > maxfd) in processIncoming()
678 maxfd = netState->wakePipe[0]; in processIncoming()
680 if (maxfd < 0) { in processIncoming()
713 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL); in processIncoming()