Home | History | Annotate | Download | only in libctf

Lines Matching defs:cdi

56   ctf_dump_item_t *cdi;
58 if ((cdi = malloc (sizeof (struct ctf_dump_item))) == NULL)
61 cdi->cdi_item = str;
62 ctf_list_append (&state->cds_items, cdi);
69 ctf_dump_item_t *cdi, *next_cdi;
74 for (cdi = ctf_list_next (&state->cds_items); cdi != NULL;
75 cdi = next_cdi)
77 free (cdi->cdi_item);
78 next_cdi = ctf_list_next (cdi);
79 free (cdi);