Lines Matching defs:debugger
28 from aw import debugger, runtime
38 1. 连接 connect server 和主线程 debugger server
40 3. 连接子线程 debugger server,用于执行 task 任务
51 14. 关闭所有线程 debugger server 和 connect server 连接
97 # main thread: connect the debugger server
100 logging.info(f'Connect to the debugger server of instance: {main_thread.instance_id}')
146 # worker thread: connect the debugger server
149 logging.info(f'Connect to the debugger server of instance: {worker_thread.instance_id}')
165 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
170 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=10),
171 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=17),
172 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=25)]
173 params = debugger.SetBreakpointsLocations(locations)
196 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
201 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=10),
202 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=17),
203 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=25)]
204 params = debugger.SetBreakpointsLocations(locations)