Lines Matching refs:ccf
221 ctf_convert_fini_filelist(ctf_convert_filelist_t *ccf) in ctf_convert_fini_filelist() argument
223 ctf_strfree(ccf->ccf_basename); in ctf_convert_fini_filelist()
224 ctf_free(ccf, sizeof (ctf_convert_filelist_t)); in ctf_convert_fini_filelist()
230 ctf_convert_filelist_t *ccf; in ctf_convert_fini() local
233 while ((ccf = list_remove_head(&cch->cch_nodebug)) != NULL) in ctf_convert_fini()
234 ctf_convert_fini_filelist(ccf); in ctf_convert_fini()
295 ctf_convert_filelist_t *ccf; in ctf_convert_add_ignore() local
300 ccf = ctf_alloc(sizeof (ctf_convert_filelist_t)); in ctf_convert_add_ignore()
301 if (ccf == NULL) in ctf_convert_add_ignore()
304 ccf->ccf_basename = ctf_strdup(basename); in ctf_convert_add_ignore()
305 if (ccf->ccf_basename == NULL) { in ctf_convert_add_ignore()
306 ctf_free(ccf, sizeof (ctf_convert_filelist_t)); in ctf_convert_add_ignore()
309 list_insert_tail(&cch->cch_nodebug, ccf); in ctf_convert_add_ignore()