Lines Matching refs:cmd_args
602 def rsp_stop_reply(options, cmd, cmd_args, rsp): argument
666 def rsp_qSymbol(options, cmd, cmd_args, rsp): argument
687 def rsp_qXfer(options, cmd, cmd_args, rsp): argument
688 data = cmd_args.split(':')
746 def rsp_qC(options, cmd, cmd_args, rsp): argument
767 def rsp_ok_means_supported(options, cmd, cmd_args, rsp): argument
769 print("%s%s is supported" % (cmd, cmd_args))
771 print("%s%s is not supported" % (cmd, cmd_args))
773 print("%s%s -> %s" % (cmd, cmd_args, rsp))
776 def rsp_ok_means_success(options, cmd, cmd_args, rsp): argument
780 print("%s%s is not supported" % (cmd, cmd_args))
782 print("%s%s -> %s" % (cmd, cmd_args, rsp))
801 def rsp_dump_key_value_pairs(options, cmd, cmd_args, rsp): argument
825 def rsp_qSpeedTest(options, cmd, cmd_args, rsp): argument
862 def rsp_vCont(options, cmd, cmd_args, rsp): argument
863 if cmd_args == '?':
887 rsp_stop_reply(options, cmd, cmd_args, rsp)
893 print("not supported (cmd = '%s', args = '%s', rsp = '%s')" % (cmd, cmd_args, rsp))
910 def rsp_qRegisterInfo(options, cmd, cmd_args, rsp): argument
912 print('query_register_info(reg_num=%i):' % (int(cmd_args, 16)), end=' ')
937 def rsp_qThreadInfo(options, cmd, cmd_args, rsp): argument
951 def rsp_hex_big_endian(options, cmd, cmd_args, rsp): argument
953 print("%s%s is not supported" % (cmd, cmd_args))
970 def rsp_mem_bin_bytes(options, cmd, cmd_args, rsp): argument
971 packet = Packet(cmd_args)
1037 def rsp_alloc_memory(options, cmd, cmd_args, rsp): argument
1053 def rsp_memory_bytes(options, cmd, cmd_args, rsp): argument
1054 addr = Packet(cmd_args).get_hex_uint('big')
1099 def rsp_read_one_reg(options, cmd, cmd_args, rsp): argument
1100 packet = Packet(cmd_args)
1137 def cmd_read_all_regs(cmd, cmd_args): argument
1138 packet = Packet(cmd_args)
1148 def rsp_read_all_regs(options, cmd, cmd_args, rsp): argument
1219 def rsp_json(options, cmd, cmd_args, rsp): argument
1229 def rsp_jGetLoadedDynamicLibrariesInfos(options, cmd, cmd_args, rsp): argument
1230 if cmd_args:
1231 rsp_json(options, cmd, cmd_args, rsp)
1233 rsp_ok_means_supported(options, cmd, cmd_args, rsp)