Lines Matching refs:cmd_args

601 def rsp_stop_reply(options, cmd, cmd_args, rsp):  argument
665 def rsp_qSymbol(options, cmd, cmd_args, rsp): argument
686 def rsp_qXfer(options, cmd, cmd_args, rsp): argument
687 data = cmd_args.split(':')
745 def rsp_qC(options, cmd, cmd_args, rsp): argument
766 def rsp_ok_means_supported(options, cmd, cmd_args, rsp): argument
768 print("%s%s is supported" % (cmd, cmd_args))
770 print("%s%s is not supported" % (cmd, cmd_args))
772 print("%s%s -> %s" % (cmd, cmd_args, rsp))
775 def rsp_ok_means_success(options, cmd, cmd_args, rsp): argument
779 print("%s%s is not supported" % (cmd, cmd_args))
781 print("%s%s -> %s" % (cmd, cmd_args, rsp))
800 def rsp_dump_key_value_pairs(options, cmd, cmd_args, rsp): argument
824 def rsp_qSpeedTest(options, cmd, cmd_args, rsp): argument
861 def rsp_vCont(options, cmd, cmd_args, rsp): argument
862 if cmd_args == '?':
886 rsp_stop_reply(options, cmd, cmd_args, rsp)
892 print("not supported (cmd = '%s', args = '%s', rsp = '%s')" % (cmd, cmd_args, rsp))
909 def rsp_qRegisterInfo(options, cmd, cmd_args, rsp): argument
911 print('query_register_info(reg_num=%i):' % (int(cmd_args, 16)), end=' ')
936 def rsp_qThreadInfo(options, cmd, cmd_args, rsp): argument
950 def rsp_hex_big_endian(options, cmd, cmd_args, rsp): argument
952 print("%s%s is not supported" % (cmd, cmd_args))
969 def rsp_mem_bin_bytes(options, cmd, cmd_args, rsp): argument
970 packet = Packet(cmd_args)
1036 def rsp_alloc_memory(options, cmd, cmd_args, rsp): argument
1052 def rsp_memory_bytes(options, cmd, cmd_args, rsp): argument
1053 addr = Packet(cmd_args).get_hex_uint('big')
1098 def rsp_read_one_reg(options, cmd, cmd_args, rsp): argument
1099 packet = Packet(cmd_args)
1136 def cmd_read_all_regs(cmd, cmd_args): argument
1137 packet = Packet(cmd_args)
1147 def rsp_read_all_regs(options, cmd, cmd_args, rsp): argument
1218 def rsp_json(options, cmd, cmd_args, rsp): argument
1228 def rsp_jGetLoadedDynamicLibrariesInfos(options, cmd, cmd_args, rsp): argument
1229 if cmd_args:
1230 rsp_json(options, cmd, cmd_args, rsp)
1232 rsp_ok_means_supported(options, cmd, cmd_args, rsp)