Home | History | Annotate | Download | only in ctf

Lines Matching refs:num_labels

35 extract_label_info(ctf_file_t *fp, const ctf_lblent_t **ctl, uint_t *num_labels)
49 *num_labels = (h->cth_objtoff - h->cth_lbloff) / sizeof (ctf_lblent_t);
62 uint_t num_labels = 0; // XXX: gcc
64 if (extract_label_info(fp, &ctlp, &num_labels) == CTF_ERR)
67 if (num_labels == 0) {
72 if ((s = ctf_strraw(fp, (ctlp + num_labels - 1)->ctl_label)) == NULL)
86 uint_t i, num_labels = 0; // XXX: gcc
91 if (extract_label_info(fp, &ctlp, &num_labels) == CTF_ERR)
94 if (num_labels == 0)
97 for (i = 0; i < num_labels; i++, ctlp++) {