Lines Matching defs:debugger

28 from aw import debugger, runtime
38 1. 连接 connect server 和主线程 debugger server
42 5. 创建第一个子线程,连接子线程 debugger server
44 7. 创建另一个子线程,连接子线程 debugger server
58 21. 销毁所有子线程,对应的 debugger server 连接断开
59 22. 关闭主线程 debugger server 和 connect server 连接
105 # main thread: connect the debugger server
108 logging.info(f'Connect to the debugger server of instance: {main_thread.instance_id}')
152 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
157 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=12),
158 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=53),
159 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=57)]
160 params = debugger.SetBreakpointsLocations(locations)
184 # worker thread: connect the debugger server
187 logging.info(f'Connect to the debugger server of instance: {worker_thread_1.instance_id}')
193 # worker thread: connect the debugger server
196 logging.info(f'Connect to the debugger server of instance: {worker_thread_2.instance_id}')
233 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['worker'])
239 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['worker'], line_number=11)]
240 params = debugger.SetBreakpointsLocations(locations)
293 # worker thread: connect the debugger server
296 logging.info(f'Connect to the debugger server of instance: {worker_thread_2.instance_id}')
320 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['worker'])
325 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['worker'], line_number=11)]
326 params = debugger.SetBreakpointsLocations(locations)