Searched refs:stdInput (Results 1 – 3 of 3) sorted by relevance
/aoo4110/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 449 if (pipe( stdInput ) == -1) in ChildStatusProc() 504 if (stdInput[1] != -1) close( stdInput[1] ); in ChildStatusProc() 514 if ( stdInput[0] != STDIN_FILENO ) in ChildStatusProc() 516 dup2( stdInput[0], STDIN_FILENO ); in ChildStatusProc() 517 if (stdInput[0] != -1) close( stdInput[0] ); in ChildStatusProc() 555 if (stdInput[0] != -1) close( stdInput[0] ); in ChildStatusProc() 582 *(pdata->m_pInputWrite) = osl_createFileHandleFromFD( stdInput[1] ); in ChildStatusProc() 653 if (stdInput[1] != -1) close( stdInput[1] ); in ChildStatusProc()
|
/aoo4110/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 225 pipe( stdInput); in osl_executeProcess_WithRedirectedIO() 231 fcntl( stdInput[0], F_SETFD, FD_CLOEXEC); in osl_executeProcess_WithRedirectedIO() 232 fcntl( stdInput[1], F_SETFD, FD_CLOEXEC); in osl_executeProcess_WithRedirectedIO() 240 dup2( stdInput[0], STDIN_FILENO ); in osl_executeProcess_WithRedirectedIO() 241 close( stdInput[0] ); in osl_executeProcess_WithRedirectedIO() 266 *(pInputWrite) = osl_createFileHandleFromFD( stdInput[1] ); in osl_executeProcess_WithRedirectedIO()
|
/aoo4110/main/qadevOOo/runner/helper/ |
H A D | ProcessHandler.java | 953 … BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream())); in system() local 959 while ((s = stdInput.readLine()) != null) in system()
|
Completed in 228 milliseconds