Home | History | Annotate | Download | only in frame

Lines Matching full:process

58         # Now launch the process, and do not stop at the entry point.
59 process = target.LaunchSimple(None, None, os.getcwd())
61 process = target.GetProcess()
62 self.assertTrue(process.GetState() == lldb.eStateStopped,
71 while process.GetState() == lldb.eStateStopped:
72 thread = process.GetThreadAtIndex(0)
109 process.Continue()
111 # At this point, the inferior process should have exited.
112 self.assertTrue(process.GetState() == lldb.eStateExited, PROCESS_EXITED)
142 # Now launch the process, and do not stop at the entry point.
143 process = target.LaunchSimple(None, None, os.getcwd())
145 process = target.GetProcess()
146 self.assertTrue(process.GetState() == lldb.eStateStopped,
149 thread = process.GetThreadAtIndex(0)
179 # Now launch the process, and do not stop at the entry point.
180 process = target.LaunchSimple(None, None, os.getcwd())
182 process = target.GetProcess()
183 self.assertTrue(process.GetState() == lldb.eStateStopped,
186 thread = process.GetThreadAtIndex(0)