Lines Matching refs:branch_info
92 if (h->branch_info) { in hists__calc_col_len()
93 if (h->branch_info->from.sym) { in hists__calc_col_len()
94 symlen = (int)h->branch_info->from.sym->namelen + 4; in hists__calc_col_len()
99 symlen = dso__name_len(h->branch_info->from.map->dso); in hists__calc_col_len()
107 if (h->branch_info->to.sym) { in hists__calc_col_len()
108 symlen = (int)h->branch_info->to.sym->namelen + 4; in hists__calc_col_len()
113 symlen = dso__name_len(h->branch_info->to.map->dso); in hists__calc_col_len()
341 if (he->branch_info) { in hist_entry__new()
347 he->branch_info = malloc(sizeof(*he->branch_info)); in hist_entry__new()
348 if (he->branch_info == NULL) { in hist_entry__new()
355 memcpy(he->branch_info, template->branch_info, in hist_entry__new()
356 sizeof(*he->branch_info)); in hist_entry__new()
358 map__get(he->branch_info->from.map); in hist_entry__new()
359 map__get(he->branch_info->to.map); in hist_entry__new()
460 struct branch_info *bi, in __hists__add_entry()
485 .branch_info = bi, in __hists__add_entry()
583 struct branch_info *bi; in iter_prepare_branch_entry()
610 struct branch_info *bi = iter->priv; in iter_next_branch_entry()
628 struct branch_info *bi; in iter_add_next_branch_entry()
961 if (he->branch_info) { in hist_entry__delete()
962 map__zput(he->branch_info->from.map); in hist_entry__delete()
963 map__zput(he->branch_info->to.map); in hist_entry__delete()
964 zfree(&he->branch_info); in hist_entry__delete()
1490 struct branch_info *bi; in hist__account_cycles()