Lines Matching refs:debugger

29 from aw import debugger

40 2. 连接 connect server 和主线程 debugger server
41 3. 创建两个子线程,连接子线程 debugger server
53 15. 销毁所有子线程,对应的 debugger server 连接断开
54 16. 关闭主线程 debugger server 和 connect server 连接
101 # main thread: connect the debugger server
104 logging.info(f'Connect to the debugger server of instance: {main_thread.instance_id}')
106 # worker thread: connect the debugger server
109 logging.info(f'Connect to the debugger server of instance: {worker_thread_1.instance_id}')
111 logging.info(f'Connect to the debugger server of instance: {worker_thread_2.instance_id}')
142 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['index'])
147 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=53),
148 debugger.BreakLocationUrl(url=self.config['file_path']['index'], line_number=57)]
149 params = debugger.SetBreakpointsLocations(locations)
173 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['worker'])
178 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['worker'], line_number=11)]
179 params = debugger.SetBreakpointsLocations(locations)
192 # worker thread: connect the debugger server
195 logging.info(f'Connect to the debugger server of instance: {worker_thread_2.instance_id}')
219 params = debugger.RemoveBreakpointsUrl(self.config['file_path']['worker'])
224 locations = [debugger.BreakLocationUrl(url=self.config['file_path']['worker'], line_number=11)]
225 params = debugger.SetBreakpointsLocations(locations)