Home | History | Annotate | Download | only in thread

Lines Matching full:process

132         # Launch the process, and do not stop at the entry point.
133 process = target.LaunchSimple(None, None, os.getcwd())
135 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
137 self.runCmd("process status")
141 self.assertTrue(proc_of_thread.GetProcessID() == process.GetProcessID())
154 # Launch the process, and do not stop at the entry point.
155 process = target.LaunchSimple(None, None, os.getcwd())
157 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
159 #self.runCmd("process status")
179 # Launch the process, and do not stop at the entry point.
180 process = target.LaunchSimple(None, None, os.getcwd())
183 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
192 #self.runCmd("process status")
193 process.Continue()
197 #self.runCmd("process status")
212 # Launch the process, and do not stop at the entry point.
213 process = target.LaunchSimple(None, None, os.getcwd())
215 self.assertTrue(process, PROCESS_IS_VALID)
218 self.assertTrue(process.GetState() == lldb.eStateStopped)
219 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
253 # Launch the process, and do not stop at the entry point.
254 process = target.LaunchSimple(None, None, os.getcwd())
256 self.assertTrue(process, PROCESS_IS_VALID)
259 self.assertTrue(process.GetState() == lldb.eStateStopped)
260 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
286 self.runCmd("process status")