Lines Matching refs:length
319 int length; in handle_exception() local
411 length = kgdb_getregs(regs, remcomRegBuffer, BUFMAX); in handle_exception()
412 mem2hex(remcomRegBuffer, remcomOutBuffer, length); in handle_exception()
416 length = strlen(ptr); in handle_exception()
417 if ((length & 1) != 0) kgdb_error(KGDBERR_BADPARAMS); in handle_exception()
418 hex2mem(ptr, remcomRegBuffer, length/2); in handle_exception()
419 kgdb_putregs(regs, remcomRegBuffer, length/2); in handle_exception()
428 && hexToInt(&ptr, &length)) { in handle_exception()
429 mem2hex((char *)addr, remcomOutBuffer, length); in handle_exception()
440 && hexToInt(&ptr, &length) in handle_exception()
442 hex2mem(ptr, (char *)addr, length); in handle_exception()
500 && ((length = strlen(ptr)) & 1) == 0) { in handle_exception()
501 hex2mem(ptr, remcomRegBuffer, length/2); in handle_exception()
503 remcomRegBuffer, length/2); in handle_exception()