Home
last modified time | relevance | path

Searched refs:ctf_sxlate (Results 1 – 3 of 3) sorted by relevance

/freebsd-9-stable/cddl/contrib/opensolaris/common/ctf/
Dctf_lookup.c200 if (fp->ctf_sxlate[symidx] == -1u) in ctf_lookup_by_symbol()
203 type = *(ushort_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]); in ctf_lookup_by_symbol()
263 if (fp->ctf_sxlate[symidx] == -1u) in ctf_func_info()
266 dp = (ushort_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]); in ctf_func_info()
307 dp = (ushort_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]) + 2; in ctf_func_args()
Dctf_open.c114 uint_t *xp = fp->ctf_sxlate; in init_symtab()
734 fp->ctf_sxlate = ctf_alloc(fp->ctf_nsyms * sizeof (uint_t)); in ctf_bufopen()
736 if (fp->ctf_sxlate == NULL) { in ctf_bufopen()
850 if (fp->ctf_sxlate != NULL) in ctf_close()
851 ctf_free(fp->ctf_sxlate, sizeof (uint_t) * fp->ctf_nsyms); in ctf_close()
Dctf_impl.h192 uint_t *ctf_sxlate; /* translation table for symtab entries */ member