Searched refs:stdError (Results 1 – 3 of 3) sorted by relevance
/aoo41x/main/sal/osl/unx/ |
H A D | process.c | 432 int stdOutput[2] = { -1, -1 }, stdInput[2] = { -1, -1 }, stdError[2] = { -1, -1 }; in ChildStatusProc() local 457 if (pipe( stdError ) == -1) in ChildStatusProc() 510 if (stdError[0] != -1) close( stdError[0] ); in ChildStatusProc() 526 if ( stdError[1] != STDERR_FILENO ) in ChildStatusProc() 528 dup2( stdError[1], STDERR_FILENO ); in ChildStatusProc() 529 if (stdError[1] != -1) close( stdError[1] ); in ChildStatusProc() 557 if (stdError[1] != -1) close( stdError[1] ); in ChildStatusProc() 588 *(pdata->m_pErrorRead) = osl_createFileHandleFromFD( stdError[0] ); in ChildStatusProc() 655 if (stdError[0] != -1) close( stdError[0] ); in ChildStatusProc()
|
/aoo41x/main/sal/osl/os2/ |
H A D | process.c | 221 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()
|
/aoo41x/main/qadevOOo/runner/helper/ |
H A D | ProcessHandler.java | 955 … BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream())); in system() local 965 while ((s = stdError.readLine()) != null) in system()
|
Completed in 30 milliseconds