Home
last modified time | relevance | path

Searched refs:readfds (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/
DStdioConverter.c172 fd_set readfds; in stdioConverterThreadStart() local
175 FD_ZERO(&readfds); in stdioConverterThreadStart()
176 FD_SET(pipeStorage->stdoutPipe[0], &readfds); in stdioConverterThreadStart()
177 FD_SET(pipeStorage->stderrPipe[0], &readfds); in stdioConverterThreadStart()
180 fdCount = select(maxFd+1, &readfds, NULL, NULL, NULL); in stdioConverterThreadStart()
192 if (FD_ISSET(pipeStorage->stdoutPipe[0], &readfds)) { in stdioConverterThreadStart()
196 if (FD_ISSET(pipeStorage->stderrPipe[0], &readfds)) { in stdioConverterThreadStart()
/dalvik/vm/jdwp/
DJdwpSocket.c276 fd_set readfds;
280 FD_ZERO(&readfds);
281 FD_SET(sock, &readfds);
285 count = select(sock+1, &readfds, NULL, NULL, &tv);
289 if (FD_ISSET(sock, &readfds)) /* make sure it's our fd */
673 fd_set readfds; in processIncoming() local
688 FD_ZERO(&readfds); in processIncoming()
693 FD_SET(fd, &readfds); in processIncoming()
696 FD_SET(fd, &readfds); in processIncoming()
699 FD_SET(fd, &readfds); in processIncoming()
[all …]
DJdwpAdb.c517 fd_set readfds; in processIncoming() local
521 FD_ZERO(&readfds); in processIncoming()
526 FD_SET(fd, &readfds); in processIncoming()
532 FD_SET(fd, &readfds); in processIncoming()
538 FD_SET(fd, &readfds); in processIncoming()
562 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL); in processIncoming()
571 FD_ISSET(netState->wakeFds[0], &readfds)) in processIncoming()
577 FD_ISSET(netState->controlSock, &readfds)) in processIncoming()
593 FD_ISSET(netState->clientSock, &readfds)) in processIncoming()