Home | History | Annotate | Download | only in util

Lines Matching refs:branch_info

102 	if (h->branch_info) {
103 if (h->branch_info->from.sym) {
104 symlen = (int)h->branch_info->from.sym->namelen + 4;
109 symlen = dso__name_len(h->branch_info->from.map->dso);
117 if (h->branch_info->to.sym) {
118 symlen = (int)h->branch_info->to.sym->namelen + 4;
123 symlen = dso__name_len(h->branch_info->to.map->dso);
287 if (he->branch_info) {
293 he->branch_info = malloc(sizeof(*he->branch_info));
294 if (he->branch_info == NULL) {
299 memcpy(he->branch_info, template->branch_info,
300 sizeof(*he->branch_info));
302 if (he->branch_info->from.map)
303 he->branch_info->from.map->referenced = true;
304 if (he->branch_info->to.map)
305 he->branch_info->to.map->referenced = true;
430 .branch_info = NULL,
438 struct branch_info *bi,
458 .branch_info = bi,
488 .branch_info = NULL,
531 free(he->branch_info);