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

  /external/libbrillo/brillo/
process.cc 156 int pipefds[2]; local
157 if (pipe(pipefds) < 0) {
164 i->second.parent_fd_ = pipefds[1];
165 i->second.child_fd_ = pipefds[0];
167 i->second.parent_fd_ = pipefds[0];
168 i->second.child_fd_ = pipefds[1];
  /system/extras/perfprofd/
perfprofdcore.cc 288 int pipefds[2]; local
289 if (pipe2(pipefds, O_CLOEXEC) != 0) {
296 close(pipefds[0]);
297 close(pipefds[1]);
301 close(pipefds[0]);
302 dup2(pipefds[1], fileno(stderr));
303 dup2(pipefds[1], fileno(stdout));
315 close(pipefds[1]);
321 bool result = android::base::ReadFdToString(pipefds[0], &dump_output);
322 close(pipefds[0])
    [all...]
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 779 int pipefds[2]; local
780 int err = pipe(pipefds);
782 int fd = pipefds[1];
795 if (IGNORE_EINTR(close(pipefds[0])) < 0)
797 if (IGNORE_EINTR(close(pipefds[1])) < 0)
804 int pipefds[2]; local
805 int err = pipe(pipefds);
807 int fd = pipefds[1];
820 if (IGNORE_EINTR(close(pipefds[0])) < 0)
822 if (IGNORE_EINTR(close(pipefds[1])) < 0
    [all...]

Completed in 95 milliseconds