Home
last modified time | relevance | path

Searched refs:stdInput (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
448 if (pipe( stdInput ) == -1) in ChildStatusProc()
503 if (stdInput[1] != -1) close( stdInput[1] ); in ChildStatusProc()
513 if ( stdInput[0] != STDIN_FILENO ) in ChildStatusProc()
515 dup2( stdInput[0], STDIN_FILENO ); in ChildStatusProc()
516 if (stdInput[0] != -1) close( stdInput[0] ); in ChildStatusProc()
554 if (stdInput[0] != -1) close( stdInput[0] ); in ChildStatusProc()
581 *(pdata->m_pInputWrite) = osl_createFileHandleFromFD( stdInput[1] ); in ChildStatusProc()
652 if (stdInput[1] != -1) close( stdInput[1] ); 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
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()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/helper/
H A DProcessHandler.java953 … BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream())); in system() local
959 while ((s = stdInput.readLine()) != null) in system()

Completed in 19 milliseconds