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

  /external/libxkbcommon/xkbcommon/test/
x11comp.c 42 int pipefds[2]; local
68 ret = pipe(pipefds);
71 ret = snprintf(displayfd, sizeof(displayfd), "%d", pipefds[1]);
80 close(pipefds[1]);
83 ret = read(pipefds[0], display + 1, sizeof(display) - 1);
91 close(pipefds[0]);
  /external/libbrillo/brillo/
process.cc 158 int pipefds[2]; local
159 if (pipe(pipefds) < 0) {
166 i->second.parent_fd_ = pipefds[1];
167 i->second.child_fd_ = pipefds[0];
169 i->second.parent_fd_ = pipefds[0];
170 i->second.child_fd_ = pipefds[1];
  /system/extras/perfprofd/
perfprofdcore.cc 232 int pipefds[2]; local
233 if (pipe2(pipefds, O_CLOEXEC) != 0) {
240 close(pipefds[0]);
241 close(pipefds[1]);
245 close(pipefds[0]);
246 dup2(pipefds[1], fileno(stderr));
247 dup2(pipefds[1], fileno(stdout));
259 close(pipefds[1]);
265 bool result = android::base::ReadFdToString(pipefds[0], &dump_output);
266 close(pipefds[0])
    [all...]
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 749 int pipefds[2]; local
750 int err = pipe(pipefds);
752 int fd = pipefds[1];
765 if (IGNORE_EINTR(close(pipefds[0])) < 0)
767 if (IGNORE_EINTR(close(pipefds[1])) < 0)
774 int pipefds[2]; local
775 int err = pipe(pipefds);
777 int fd = pipefds[1];
790 if (IGNORE_EINTR(close(pipefds[0])) < 0)
792 if (IGNORE_EINTR(close(pipefds[1])) < 0
    [all...]

Completed in 90 milliseconds