Lines Matching refs:command
108 def test(command, pattern=None): argument
125 gdb.sendline(command)
146 'Response: {2}'.format(command, pattern, gdb.before))
247 command = 'tbreak'
250 command = 'break'
255 test('{0} {1}:{2} {3}'.format(command, file_name, line_number, thread_str),
272 command = 'continue'
274 command = 'thread apply {0} continue'.format(thread)
276 test(command)
291 command = 'next'
293 command = 'thread apply {0} next'
295 test('{0} {1}'.format(command, count))
316 command = 'python print(gdb.selected_thread().ptid[1])'
318 return test(command, r'[0-9]+')