Lines Matching refs:Control
60 def break_on_all_but_main(Control, Symbols, main_offset): argument
67 bp = Control.AddBreakpoint2(offset=rec.Offset, enabled=True)
77 Client.Control.SetEngineOptions(0x20) # DEBUG_ENGOPT_INITIAL_BREAK
87 res = Client.Control.WaitForEvent(timeout=1000)
95 Client.Control.Execute("l+t")
97 Client.Control.SetExpressionSyntax(cpp=True)
104 breakpoint = Client.Control.AddBreakpoint2(offset=offset, enabled=True)
105 Client.Control.SetExecutionStatus(control.DebugStatus.DEBUG_STATUS_GO)
112 res = Client.Control.WaitForEvent(timeout=5000)
117 break_on_all_but_main(Client.Control, Client.Symbols, offset)
121 filts = Client.Control.GetNumberEventFilters()
123 Client.Control.SetExceptionFilterSecondCommand(x, "qd")
128 client.Control.Execute("p")
130 client.Control.WaitForEvent()
132 if client.Control.GetExecutionStatus() == control.DebugStatus.DEBUG_STATUS_NO_DEBUGGEE:
136 client.Control.GetExecutionStatus()