Home
last modified time | relevance | path

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

/trunk/main/sal/osl/unx/
H A Dprocess.c431 int stdOutput[2] = { -1, -1 }, stdInput[2] = { -1, -1 }, stdError[2] = { -1, -1 }; in ChildStatusProc() local
456 if (pipe( stdError ) == -1) in ChildStatusProc()
509 if (stdError[0] != -1) close( stdError[0] ); in ChildStatusProc()
525 if ( stdError[1] != STDERR_FILENO ) in ChildStatusProc()
527 dup2( stdError[1], STDERR_FILENO ); in ChildStatusProc()
528 if (stdError[1] != -1) close( stdError[1] ); in ChildStatusProc()
556 if (stdError[1] != -1) close( stdError[1] ); in ChildStatusProc()
587 *(pdata->m_pErrorRead) = osl_createFileHandleFromFD( stdError[0] ); in ChildStatusProc()
654 if (stdError[0] != -1) close( stdError[0] ); in ChildStatusProc()
/trunk/main/sal/osl/os2/
H A Dprocess.c221 int stdOutput[2] = { -1, -1 }, stdInput[2] = { -1, -1 }, stdError[2] = { -1, -1 }; in osl_executeProcess_WithRedirectedIO() local
229 pipe( stdError); in osl_executeProcess_WithRedirectedIO()
235 fcntl( stdError[0], F_SETFD, FD_CLOEXEC); in osl_executeProcess_WithRedirectedIO()
236 fcntl( stdError[1], F_SETFD, FD_CLOEXEC); in osl_executeProcess_WithRedirectedIO()
250 dup2( stdError[1], STDERR_FILENO ); in osl_executeProcess_WithRedirectedIO()
251 close( stdError[1] ); in osl_executeProcess_WithRedirectedIO()
272 *(pErrorRead) = osl_createFileHandleFromFD( stdError[0] ); in osl_executeProcess_WithRedirectedIO()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/helper/
H A DProcessHandler.java955 … BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream())); in system() local
965 while ((s = stdError.readLine()) != null) in system()

Completed in 27 milliseconds