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

  /dalvik/vm/
StdioConverter.cpp 61 if (pipe(gDvm.stderrPipe) != 0) {
75 if (dup2(gDvm.stderrPipe[1], kFilenoStderr) != kFilenoStderr) {
79 close(gDvm.stderrPipe[1]);
80 gDvm.stderrPipe[1] = -1;
159 FD_SET(gDvm.stderrPipe[0], &readfds);
160 maxFd = MAX(gDvm.stdoutPipe[0], gDvm.stderrPipe[0]);
178 if (FD_ISSET(gDvm.stderrPipe[0], &readfds)) {
179 err |= !readAndLog(gDvm.stderrPipe[0], stderrData,
192 close(gDvm.stderrPipe[0]);
Globals.h 711 int stderrPipe[2];

Completed in 32 milliseconds