Lines Matching refs:debugger
28 from aw import debugger, runtime
38 1. 连接 connect server 和主线程 debugger server
39 2. 连接子线程 debugger server,用于执行 task 任务
50 12. 关闭所有线程 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}')
102 # worker thread: connect the debugger server
105 logging.info(f'Connect to the debugger server of instance: {worker_thread.instance_id}')
133 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
138 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=10),
139 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=17),
140 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=25)]
141 params = debugger.SetBreakpointsLocations(locations)
164 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
169 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=10),
170 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=17),
171 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=25)]
172 params = debugger.SetBreakpointsLocations(locations)