Home | History | Annotate | Download | only in gdbstub

Lines Matching defs:args

342 static int gdbstub_get_packet_args(struct gdbstub *stub, unsigned long *args,
354 args[argc++] = val;
364 args[argc++] = val;
399 unsigned long args[2];
401 (stub, args, sizeof args / sizeof args[0], NULL)) {
405 args[1] = (args[1] < SIZEOF_PAYLOAD / 2) ? args[1] : SIZEOF_PAYLOAD / 2;
406 gdbstub_to_hex_buf(stub->payload, (char *)args[0], args[1]);
407 stub->len = args[1] * 2;
413 unsigned long args[2];
416 (stub, args, sizeof args / sizeof args[0], &colon) || colon >= stub->len
421 gdbstub_from_hex_buf((char *)args[0], &stub->payload[colon + 1],
440 unsigned long args[3];
443 (stub, args, sizeof args / sizeof args[0], NULL)) {
447 if (gdbmach_set_breakpoint(args[0], args[1], args[2], enable)) {