Home | History | Annotate | Download | only in watchpoint

Lines Matching full:process

53         # Now launch the process, and do not stop at the entry point.
54 process = target.LaunchSimple(None, None, os.getcwd())
57 process = target.GetProcess()
58 self.assertTrue(process.GetState() == lldb.eStateStopped,
60 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
78 process.Continue()
81 lldbutil.print_stacktraces(process)
83 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
88 process.Continue()
91 lldbutil.print_stacktraces(process)
93 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
97 # Continue the process. We don't expect the program to be stopped again.
98 process.Continue()
100 # At this point, the inferior process should have exited.
101 self.assertTrue(process.GetState() == lldb.eStateExited, PROCESS_EXITED)