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

  /external/bison/lib/
subpipe.c 113 int child_fd[2]; local
116 if (pipe (child_fd) != 0
117 || (child_fd[0] = fd_safer (child_fd[0])) < 0
118 || (fd[0] = fd_safer (child_fd[1])) < 0
121 || (child_fd[1] = fd_safer (pipe_fd[1])) < 0)
135 dup2 (child_fd[0], STDIN_FILENO);
136 close (child_fd[0]);
137 dup2 (child_fd[1], STDOUT_FILENO);
138 close (child_fd[1])
    [all...]
  /external/v8/src/
d8-posix.cc 309 static Handle<Value> GetStdout(int child_fd,
323 if (fcntl(child_fd, F_SETFL, O_NONBLOCK) != 0) {
329 bytes_read = read(child_fd,
334 if (!WaitOnFD(child_fd,

Completed in 18 milliseconds