Home
last modified time | relevance | path

Searched refs:cth_typeoff (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/common/ctf/
H A Dctf_open.c164 if (funcoff >= hp->cth_typeoff) { in init_symtab()
204 const ctf_type_t *tbuf = (ctf_type_t *)(fp->ctf_buf + cth->cth_typeoff); in init_types()
604 hp.cth_typeoff = h1p->cth_typeoff; in ctf_bufopen()
617 hp.cth_funcoff > size || hp.cth_typeoff > size || in ctf_bufopen()
623 hp.cth_funcoff > hp.cth_typeoff || in ctf_bufopen()
624 hp.cth_typeoff > hp.cth_stroff) in ctf_bufopen()
628 (hp.cth_funcoff & 1) || (hp.cth_typeoff & 3)) in ctf_bufopen()
H A Dctf_create.c438 hdr.cth_typeoff = hdr.cth_funcoff + funcsize; in ctf_update()
439 if (hdr.cth_typeoff & 3) in ctf_update()
440 hdr.cth_typeoff += 4 - (hdr.cth_typeoff & 3); in ctf_update()
441 ASSERT((hdr.cth_typeoff & 3) == 0); in ctf_update()
448 hdr.cth_stroff = hdr.cth_typeoff + size; in ctf_update()
454 hdr.cth_typeoff, hdr.cth_stroff, hdr.cth_strlen); in ctf_update()
462 t = (uchar_t *)buf + sizeof (ctf_header_t) + hdr.cth_typeoff; in ctf_update()
/illumos-gate/usr/src/uts/common/sys/
H A Dctf.h124 uint_t cth_typeoff; /* offset of type section */ member
139 uint_t cth_typeoff; member
/illumos-gate/usr/src/cmd/ctfdump/
H A Dctfdump.c282 hp->cth_typeoff); in ctfdump_header()