Lines Matching refs:kd
321 kgdb_data kd; in handle_exception() local
349 kgdb_enter(regs, &kd); in handle_exception()
357 *ptr++ = hexchars[kd.sigval >> 4]; in handle_exception()
358 *ptr++ = hexchars[kd.sigval & 0xf]; in handle_exception()
360 for (i = 0; i < kd.nregs; i++) { in handle_exception()
361 kgdb_reg *rp = &kd.regs[i]; in handle_exception()
398 remcomOutBuffer[1] = hexchars[kd.sigval >> 4]; in handle_exception()
399 remcomOutBuffer[2] = hexchars[kd.sigval & 0xf]; in handle_exception()
451 kd.extype = KGDBEXIT_KILL; in handle_exception()
461 kd.extype = KGDBEXIT_CONTINUE; in handle_exception()
464 kd.exaddr = addr; in handle_exception()
465 kd.extype |= KGDBEXIT_WITHADDR; in handle_exception()
475 kd.extype = KGDBEXIT_SINGLE; in handle_exception()
478 kd.exaddr = addr; in handle_exception()
479 kd.extype |= KGDBEXIT_WITHADDR; in handle_exception()
488 kgdb_exit(regs, &kd); in handle_exception()