Lines Matching refs:command
156 def bmp_flash(self, command, **kwargs): argument
171 command = (self.gdb +
181 self.check_call(command)
183 def check_call_ignore_sigint(self, command): argument
186 self.check_call(command)
190 def bmp_attach(self, command, **kwargs): argument
192 command = (self.gdb +
199 command = (self.gdb +
206 self.check_call_ignore_sigint(command)
208 def bmp_debug(self, command, **kwargs): argument
211 command = (self.gdb +
219 self.check_call_ignore_sigint(command)
221 def do_run(self, command, **kwargs): argument
226 if command == 'flash':
227 self.bmp_flash(command, **kwargs)
228 elif command == 'debug':
229 self.bmp_debug(command, **kwargs)
230 elif command == 'attach':
231 self.bmp_attach(command, **kwargs)
233 self.bmp_flash(command, **kwargs)