Lines Matching full:command
115 # separators for the 'load' command we execute in bmp_flash().
152 def bmp_flash(self, command, **kwargs): argument
155 command = (self.gdb +
166 self.check_call(command)
168 def check_call_ignore_sigint(self, command): argument
171 self.check_call(command)
175 def bmp_attach(self, command, **kwargs): argument
177 command = (self.gdb +
185 command = (self.gdb +
193 self.check_call_ignore_sigint(command)
195 def bmp_debug(self, command, **kwargs): argument
198 command = (self.gdb +
207 self.check_call_ignore_sigint(command)
209 def do_run(self, command, **kwargs): argument
214 if command == 'flash':
215 self.bmp_flash(command, **kwargs)
216 elif command == 'debug':
217 self.bmp_debug(command, **kwargs)
218 elif command == 'attach':
219 self.bmp_attach(command, **kwargs)
221 self.bmp_flash(command, **kwargs)