Lines Matching refs:cts
59 ctf_sect_t cts; in ctf_create() local
65 cts.cts_name = _CTF_SECTION; in ctf_create()
66 cts.cts_type = SHT_PROGBITS; in ctf_create()
67 cts.cts_flags = 0; in ctf_create()
68 cts.cts_data = &hdr; in ctf_create()
69 cts.cts_size = sizeof (hdr); in ctf_create()
70 cts.cts_entsize = 1; in ctf_create()
71 cts.cts_offset = 0; in ctf_create()
73 if ((fp = ctf_bufopen(&cts, NULL, NULL, errp)) == NULL) { in ctf_create()
97 ctf_sect_t cts; in ctf_fdcreate() local
107 cts.cts_name = _CTF_SECTION; in ctf_fdcreate()
108 cts.cts_type = SHT_PROGBITS; in ctf_fdcreate()
109 cts.cts_flags = 0; in ctf_fdcreate()
110 cts.cts_data = &hdr; in ctf_fdcreate()
111 cts.cts_size = sizeof (hdr); in ctf_fdcreate()
112 cts.cts_entsize = 1; in ctf_fdcreate()
113 cts.cts_offset = 0; in ctf_fdcreate()
115 if ((fp = ctf_fdcreate_int(fd, errp, &cts)) == NULL) { in ctf_fdcreate()
285 ctf_sect_t cts, *symp, *strp; in ctf_update() local
640 cts.cts_name = _CTF_SECTION; in ctf_update()
641 cts.cts_type = SHT_PROGBITS; in ctf_update()
642 cts.cts_flags = 0; in ctf_update()
643 cts.cts_data = buf; in ctf_update()
644 cts.cts_size = size; in ctf_update()
645 cts.cts_entsize = 1; in ctf_update()
646 cts.cts_offset = 0; in ctf_update()
656 if ((nfp = ctf_bufopen(&cts, symp, strp, &err)) == NULL) { in ctf_update()