Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/common/ctf/
H A Dctf_lookup.c203 if (fp->ctf_sxlate[symidx] == -1u) in ctf_lookup_by_symbol()
206 type = *(uint_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]); in ctf_lookup_by_symbol()
272 if (fp->ctf_sxlate[symidx] == -1u) in ctf_func_info()
275 dp = (uint_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]); in ctf_func_info()
316 dp = (uint_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[symidx]) + 2; in ctf_func_args()
H A Dctf_open.c253 uint_t *xp = fp->ctf_sxlate; in init_symtab()
895 fp->ctf_sxlate = ctf_alloc(fp->ctf_nsyms * sizeof (uint_t)); in ctf_bufopen()
897 if (fp->ctf_sxlate == NULL) { in ctf_bufopen()
1101 if (fp->ctf_sxlate != NULL) in ctf_close()
1102 ctf_free(fp->ctf_sxlate, sizeof (uint_t) * fp->ctf_nsyms); in ctf_close()
H A Dctf_impl.h205 uint_t *ctf_sxlate; /* translation table for symtab entries */ member