Home | History | Annotate | Download | only in kern

Lines Matching defs:xlate_t

423 	struct addr_xlt *xlate_t, *xlt;
457 xlate_t = kmem_alloc(xlate_s, KM_SLEEP);
461 xlate_t[0].offset = 1;
469 add_string(xlate_t, &xlate_c, "?", 0);
472 add_string(xlate_t, &xlate_c, h->name, h->namelen);
481 add_string(xlate_t, &xlate_c, in_evt->fn, in_evt->fnlen);
482 add_string(xlate_t, &xlate_c, in_evt->fmt, in_evt->fmtlen);
488 xlate_t[xlate_c].offset;
494 j = find_string(xlate_t, &xlate_c, h->name, h->namelen);
495 buf->sh_nameoffset = xlate_t[j].offset;
517 j = find_string(xlate_t, &xlate_c, in_evt->fn, in_evt->fnlen);
518 out_evt->she_funcoffset = xlate_t[j].offset;
519 j = find_string(xlate_t, &xlate_c, in_evt->fmt, in_evt->fmtlen);
520 out_evt->she_fmtoffset = xlate_t[j].offset;
537 for (i = 0, xlt = xlate_t; i < xlate_c; i++, xlt++) {
556 kmem_free(xlate_t, xlate_s);