Home
last modified time | relevance | path

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

/dalvik/vm/jdwp/
DJdwpAdb.c518 int maxfd = -1; in processIncoming() local
527 if (maxfd < fd) in processIncoming()
528 maxfd = fd; in processIncoming()
533 if (maxfd < fd) in processIncoming()
534 maxfd = fd; in processIncoming()
539 if (maxfd < fd) in processIncoming()
540 maxfd = fd; in processIncoming()
545 if (maxfd < 0) { in processIncoming()
562 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL); in processIncoming()
DJdwpSocket.c674 int maxfd; in processIncoming() local
677 maxfd = netState->listenSock; in processIncoming()
678 if (netState->clientSock > maxfd) in processIncoming()
679 maxfd = netState->clientSock; in processIncoming()
680 if (netState->wakePipe[0] > maxfd) in processIncoming()
681 maxfd = netState->wakePipe[0]; in processIncoming()
683 if (maxfd < 0) { in processIncoming()
716 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL); in processIncoming()