Searched refs:child_fd (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/pexpect/
H A Dfdpexpect.py57 self.child_fd = fd
68 if self.child_fd == -1:
74 os.close(self.child_fd)
75 self.child_fd = -1
83 if self.child_fd == -1:
86 os.fstat(self.child_fd)
H A Dpexpect.py414 self.child_fd = -1
497 s.append('child_fd: ' + str(self.child_fd))
519 # The pid and child_fd of this object get set by this method.
561 self.pid, self.child_fd = pty.fork()
566 self.pid, self.child_fd = self.__fork_pty()
572 self.child_fd = sys.stdout.fileno()
619 parent_fd, child_fd = os.openpty()
620 if parent_fd < 0 or child_fd < 0:
629 self.__pty_make_controlling_tty(child_fd)
[all...]
/external/chromium_org/v8/src/
H A Dd8-posix.cc310 static Handle<Value> GetStdout(int child_fd, argument
320 if (fcntl(child_fd, F_SETFL, O_NONBLOCK) != 0) {
326 bytes_read = read(child_fd,
331 if (!WaitOnFD(child_fd,
/external/v8/src/
H A Dd8-posix.cc310 static Handle<Value> GetStdout(int child_fd, argument
320 if (fcntl(child_fd, F_SETFL, O_NONBLOCK) != 0) {
326 bytes_read = read(child_fd,
331 if (!WaitOnFD(child_fd,

Completed in 118 milliseconds