Home
last modified time | relevance | path

Searched refs:ctf_header_t (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/tools/ctf/cvt/
H A Dctf.c558 write_buffer(ctf_header_t *h, ctf_buf_t *buf, size_t *resszp) in write_buffer()
563 outbuf = xmalloc(sizeof (ctf_header_t) + (buf->ctb_ptr - buf->ctb_base) in write_buffer()
567 (void) bcopy_data(h, sizeof (ctf_header_t), &bufpos); in write_buffer()
582 write_compressed_buffer(ctf_header_t *h, ctf_buf_t *buf, size_t *resszp) in write_compressed_buffer()
587 bcopy(h, resbuf.rb_base, sizeof (ctf_header_t)); in write_compressed_buffer()
588 resbuf.rb_ptr = resbuf.rb_base + sizeof (ctf_header_t); in write_compressed_buffer()
605 ctf_header_t h; in ctf_gen()
673 count_types(ctf_header_t *h, caddr_t data) in count_types()
744 resurrect_labels(ctf_header_t *h, tdata_t *td, caddr_t ctfdata, char *matchlbl) in resurrect_labels()
789 resurrect_objects(ctf_header_t *h, tdata_t *td, tdesc_t **tdarr, int tdsize, in resurrect_objects()
[all …]
/titanic_41/usr/src/tools/ctf/dump/
H A Ddump.c111 ref_to_str(uint_t name, const ctf_header_t *hp, const ctf_data_t *cd) in ref_to_str()
182 print_header(const ctf_header_t *hp, const ctf_data_t *cd) in print_header()
204 print_labeltable(const ctf_header_t *hp, const ctf_data_t *cd) in print_labeltable()
268 read_data(const ctf_header_t *hp, const ctf_data_t *cd) in read_data()
312 read_funcs(const ctf_header_t *hp, const ctf_data_t *cd) in read_funcs()
389 read_types(const ctf_header_t *hp, const ctf_data_t *cd) in read_types()
634 read_strtab(const ctf_header_t *hp, const ctf_data_t *cd) in read_strtab()
814 ctf_header_t *hp; in main()
940 hp = (ctf_header_t *)cd.cd_ctfdata; in main()
941 cd.cd_ctfdata = (caddr_t)cd.cd_ctfdata + sizeof (ctf_header_t); in main()
[all …]
/titanic_41/usr/src/common/ctf/
H A Dctf_labels.c34 const ctf_header_t *h; in extract_label_info()
42 h = (const ctf_header_t *)fp->ctf_data.cts_data; in extract_label_info()
H A Dctf_open.c111 init_symtab(ctf_file_t *fp, const ctf_header_t *hp, in init_symtab()
200 init_types(ctf_file_t *fp, const ctf_header_t *cth) in init_types()
548 ctf_header_t hp; in ctf_bufopen()
585 if (ctfsect->cts_size < sizeof (ctf_header_t)) in ctf_bufopen()
589 hdrsz = sizeof (ctf_header_t); in ctf_bufopen()
H A Dctf_create.c55 static const ctf_header_t hdr = { { CTF_MAGIC, CTF_VERSION, 0 } }; in ctf_create()
239 ctf_header_t hdr; in ctf_update()
313 size = sizeof (ctf_header_t) + hdr.cth_stroff + hdr.cth_strlen; in ctf_update()
318 bcopy(&hdr, buf, sizeof (ctf_header_t)); in ctf_update()
319 t = (uchar_t *)buf + sizeof (ctf_header_t); in ctf_update()
320 s = s0 = (uchar_t *)buf + sizeof (ctf_header_t) + hdr.cth_stroff; in ctf_update()
/titanic_41/usr/src/uts/common/sys/
H A Dctf.h127 } ctf_header_t; typedef