Searched refs:stderrPipe (Results 1 – 2 of 2) sorted by relevance
61 if (pipe(gDvm.stderrPipe) != 0) { in dvmStdioConverterStartup()75 if (dup2(gDvm.stderrPipe[1], kFilenoStderr) != kFilenoStderr) { in dvmStdioConverterStartup()79 close(gDvm.stderrPipe[1]); in dvmStdioConverterStartup()80 gDvm.stderrPipe[1] = -1; in dvmStdioConverterStartup()159 FD_SET(gDvm.stderrPipe[0], &readfds); in stdioConverterThreadStart()160 maxFd = MAX(gDvm.stdoutPipe[0], gDvm.stderrPipe[0]); in stdioConverterThreadStart()178 if (FD_ISSET(gDvm.stderrPipe[0], &readfds)) { in stdioConverterThreadStart()179 err |= !readAndLog(gDvm.stderrPipe[0], stderrData, in stdioConverterThreadStart()192 close(gDvm.stderrPipe[0]); in stdioConverterThreadStart()
704 int stderrPipe[2]; member