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()
241 ctf_sect_t cts; in ctf_update() local
418 cts.cts_name = _CTF_SECTION; in ctf_update()
419 cts.cts_type = SHT_PROGBITS; in ctf_update()
420 cts.cts_flags = 0; in ctf_update()
421 cts.cts_data = buf; in ctf_update()
422 cts.cts_size = size; in ctf_update()
423 cts.cts_entsize = 1; in ctf_update()
424 cts.cts_offset = 0; in ctf_update()
426 if ((nfp = ctf_bufopen(&cts, NULL, NULL, &err)) == NULL) { in ctf_update()