Searched refs:child_fd (Results 1 – 3 of 3) sorted by relevance
/external/lldb/test/pexpect-2.4/ |
D | fdpexpect.py | 41 self.child_fd = fd 52 if self.child_fd == -1: 58 os.close(self.child_fd) 59 self.child_fd = -1 67 if self.child_fd == -1: 70 os.fstat(self.child_fd)
|
D | pexpect.py | 397 self.child_fd = -1 # initially closed 469 s.append('child_fd: ' + str(self.child_fd)) 528 self.pid, self.child_fd = pty.fork() 532 self.pid, self.child_fd = self.__fork_pty() 536 self.child_fd = sys.stdout.fileno() # used by setwinsize() 583 parent_fd, child_fd = os.openpty() 584 if parent_fd < 0 or child_fd < 0: 593 self.__pty_make_controlling_tty(child_fd) 595 os.dup2(child_fd, 0) 596 os.dup2(child_fd, 1) [all …]
|
/external/v8/src/ |
D | d8-posix.cc | 294 int child_fd, in GetStdout() argument 304 if (fcntl(child_fd, F_SETFL, O_NONBLOCK) != 0) { in GetStdout() 311 bytes_read = read(child_fd, in GetStdout() 316 if (!WaitOnFD(child_fd, in GetStdout()
|