HomeSort by relevance Sort by last modified time
    Searched refs:stderr_pipe (Results 1 - 3 of 3) sorted by null

  /toolchain/binutils/binutils-2.25/libiberty/
pex-common.h 69 int stderr_pipe; member in struct:pex_obj
pex-common.c 65 obj->stderr_pipe = -1;
295 if (obj->stderr_pipe != -1)
314 obj->stderr_pipe = p[READ_PORT];
506 o = obj->stderr_pipe;
510 obj->stderr_pipe = -1;
608 if (obj->stderr_pipe >= 0 && obj->stderr_pipe != STDIN_FILE_NO)
609 obj->funcs->close (obj, obj->stderr_pipe);
  /system/netd/server/
IptablesRestoreController.cpp 132 int stderr_pipe[2]; local
136 pipe2(stderr_pipe, O_NONBLOCK) == -1) {
148 // stderr_pipe[0] : The read end of the stderr pipe.
151 close(stderr_pipe[0]) == -1) {
158 // stderr_pipe[1] : The write end of the stderr pipe.
161 dup2(stderr_pipe[1], 2) == -1) {
190 // stderr_pipe[1] : The write end of the stderr pipe.
193 close(stderr_pipe[1]) == -1) {
197 return new IptablesProcess(child_pid, stdin_pipe[1], stdout_pipe[0], stderr_pipe[0]);

Completed in 2040 milliseconds