Home
last modified time | relevance | path

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

/titanic_44/usr/src/common/ctf/
H A 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()
H A Dctf_open.c115 uint_t *xp = fp->ctf_sxlate; in init_symtab()
735 fp->ctf_sxlate = ctf_alloc(fp->ctf_nsyms * sizeof (uint_t)); in ctf_bufopen()
737 if (fp->ctf_sxlate == NULL) { in ctf_bufopen()
941 if (fp->ctf_sxlate != NULL) in ctf_close()
942 ctf_free(fp->ctf_sxlate, sizeof (uint_t) * fp->ctf_nsyms); in ctf_close()
H A Dctf_impl.h194 uint_t *ctf_sxlate; /* translation table for symtab entries */ member