Home
last modified time | relevance | path

Searched refs:stdErr (Results 1 – 2 of 2) sorted by relevance

/haiku/src/kits/shared/
H A DCommandPipe.cpp147 BCommandPipe::Pipe(int* stdOut, int* stdErr) const in Pipe()
152 pipe(stdErr); in Pipe()
158 dup2(stdErr[1], STDERR_FILENO); in Pipe()
183 int stdErr[2]; in Pipe() local
184 thread_id tid = Pipe(stdOut, stdErr); in Pipe()
185 close(stdErr[0]); in Pipe()
186 close(stdErr[1]); in Pipe()
238 int stdOut[2], stdErr[2]; in Run() local
240 wait_for_thread(Pipe(stdOut, stdErr), &exitCode); in Run()
243 close(stdErr[0]); in Run()
[all …]
/haiku/headers/private/shared/
H A DCommandPipe.h44 thread_id Pipe(int* stdOut, int* stdErr) const;