OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:child_fd
(Results
1 - 3
of
3
) sorted by null
/external/lldb/test/pexpect-2.4/
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
)
pexpect.py
397
self.
child_fd
= -1 # initially closed
469
s.append('
child_fd
: ' + str(self.
child_fd
))
491
# The pid and
child_fd
of this object get set by this method.
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
)
[
all
...]
/external/v8/src/
d8-posix.cc
294
int
child_fd
,
304
if (fcntl(
child_fd
, F_SETFL, O_NONBLOCK) != 0) {
311
bytes_read = read(
child_fd
,
316
if (!WaitOnFD(
child_fd
,
Completed in 167 milliseconds