Lines Matching refs:cts
69 ctf_sect_t cts; in ctf_create() local
75 cts.cts_name = _CTF_SECTION; in ctf_create()
76 cts.cts_type = SHT_PROGBITS; in ctf_create()
77 cts.cts_flags = 0; in ctf_create()
78 cts.cts_data = &hdr; in ctf_create()
79 cts.cts_size = sizeof (hdr); in ctf_create()
80 cts.cts_entsize = 1; in ctf_create()
81 cts.cts_offset = 0; in ctf_create()
83 if ((fp = ctf_bufopen(&cts, NULL, NULL, errp)) == NULL) { in ctf_create()
107 ctf_sect_t cts; in ctf_fdcreate() local
117 cts.cts_name = _CTF_SECTION; in ctf_fdcreate()
118 cts.cts_type = SHT_PROGBITS; in ctf_fdcreate()
119 cts.cts_flags = 0; in ctf_fdcreate()
120 cts.cts_data = &hdr; in ctf_fdcreate()
121 cts.cts_size = sizeof (hdr); in ctf_fdcreate()
122 cts.cts_entsize = 1; in ctf_fdcreate()
123 cts.cts_offset = 0; in ctf_fdcreate()
125 if ((fp = ctf_fdcreate_int(fd, errp, &cts)) == NULL) { in ctf_fdcreate()
295 ctf_sect_t cts, *symp, *strp; in ctf_update() local
650 cts.cts_name = _CTF_SECTION; in ctf_update()
651 cts.cts_type = SHT_PROGBITS; in ctf_update()
652 cts.cts_flags = 0; in ctf_update()
653 cts.cts_data = buf; in ctf_update()
654 cts.cts_size = size; in ctf_update()
655 cts.cts_entsize = 1; in ctf_update()
656 cts.cts_offset = 0; in ctf_update()
666 if ((nfp = ctf_bufopen(&cts, symp, strp, &err)) == NULL) { in ctf_update()