Lines Matching refs:child
21 child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
22 # Turn on logging for what the child sends back.
24 child.logfile_read = sys.stdout
26 self.child = child
29 child.expect_exact(prompt)
30 child.sendline("command regex 'Help__'")
31 child.expect_exact(regex_prompt)
32 child.sendline('s/^$/help/')
33 child.expect_exact(regex_prompt1)
34 child.sendline('')
36 child.sendline('Help__')
38 child.expect('The following is a list of built-in, permanent debugger commands:')