Lines Matching refs:tdarr

789 resurrect_objects(ctf_header_t *h, tdata_t *td, tdesc_t **tdarr, int tdsize,  in resurrect_objects()  argument
817 ii->ii_dtype = tdarr[id]; in resurrect_objects()
832 resurrect_functions(ctf_header_t *h, tdata_t *td, tdesc_t **tdarr, int tdsize, in resurrect_functions() argument
867 ii->ii_dtype = tdarr[retid]; in resurrect_functions()
884 ii->ii_args[i] = tdarr[id]; in resurrect_functions()
901 resurrect_types(ctf_header_t *h, tdata_t *td, tdesc_t **tdarr, int tdsize, in resurrect_types() argument
946 tdp = tdarr[tid]; in resurrect_types()
1006 tdp->t_tdesc = tdarr[ctt->ctt_type]; in resurrect_types()
1018 tdp->t_ardef->ad_contents = tdarr[cta->cta_contents]; in resurrect_types()
1019 tdp->t_ardef->ad_idxtype = tdarr[cta->cta_index]; in resurrect_types()
1039 (*mpp)->ml_type = tdarr[ctm->ctm_type]; in resurrect_types()
1055 tdarr[ctlm->ctlm_type]; in resurrect_types()
1089 tdp->t_tdesc = tdarr[ctt->ctt_type]; in resurrect_types()
1094 tdp->t_tdesc = tdarr[ctt->ctt_type]; in resurrect_types()
1099 tdp->t_tdesc = tdarr[ctt->ctt_type]; in resurrect_types()
1105 tdp->t_fndef->fn_ret = tdarr[ctt->ctt_type]; in resurrect_types()
1122 tdp->t_fndef->fn_args[i] = tdarr[argid]; in resurrect_types()
1131 tdp->t_tdesc = tdarr[ctt->ctt_type]; in resurrect_types()
1172 tdesc_t **tdarr; in ctf_parse() local
1177 tdarr = xcalloc(sizeof (tdesc_t *) * (ntypes + 1)); in ctf_parse()
1178 tdarr[0] = NULL; in ctf_parse()
1180 tdarr[i] = xcalloc(sizeof (tdesc_t)); in ctf_parse()
1181 tdarr[i]->t_id = i; in ctf_parse()
1189 resurrect_objects(h, td, tdarr, ntypes + 1, buf, si); in ctf_parse()
1190 resurrect_functions(h, td, tdarr, ntypes + 1, buf, si); in ctf_parse()
1191 resurrect_types(h, td, tdarr, ntypes + 1, buf, idx); in ctf_parse()
1193 free(tdarr); in ctf_parse()