Home | History | Annotate | Download | only in single-quote-in-filename-to-lldb

Lines Matching refs:child

35         # So that the child gets torn down after the test.
36 self.child = pexpect.spawn('%s %s "%s"' % (self.lldbHere, self.lldbOption, self.myexe))
37 child = self.child
38 child.setecho(True)
39 # Turn on logging for input/output to/from the child.
42 child.logfile_send = f_send
43 child.logfile_read = f_read
45 child.expect_exact(prompt)
47 child.send("help watchpoint")
48 child.sendline('')
49 child.expect_exact(prompt)
53 child.logfile_send = None
54 child.logfile_read = None