HomeSort by relevance Sort by last modified time
    Searched full:errpipe (Results 1 - 2 of 2) sorted by null

  /device/samsung/crespo/alsa-utils/alsactl/
init_utils_run.c 37 int errpipe[2] = {-1, -1}; local
79 if (pipe(errpipe) != 0) {
98 if (errpipe[READ_END] > 0)
99 close(errpipe[READ_END]);
107 if (errpipe[WRITE_END] < 0)
116 if (errpipe[WRITE_END] > 0) {
117 dup2(errpipe[WRITE_END], STDERR_FILENO);
118 close(errpipe[WRITE_END]);
130 if (outpipe[READ_END] > 0 || errpipe[READ_END] > 0) {
137 if (errpipe[WRITE_END] > 0
    [all...]
  /frameworks/base/tools/localize/
Perforce.cpp 23 int errPipe[2];
29 err |= pipe(errPipe);
50 close(errPipe[0]);
52 dup2(errPipe[1], 2);
58 close(errPipe[1]);
76 size_t amt = read(errPipe[0], buf, sizeof(buf));
84 close(errPipe[0]);

Completed in 1788 milliseconds