|
@@ -331,7 +331,7 @@ struct sort_entry sort_sym = {
|
|
|
|
|
|
/* --sort srcline */
|
|
|
|
|
|
-char *hist_entry__get_srcline(struct hist_entry *he)
|
|
|
+char *hist_entry__srcline(struct hist_entry *he)
|
|
|
{
|
|
|
return map__srcline(he->ms.map, he->ip, he->ms.sym);
|
|
|
}
|
|
@@ -340,9 +340,9 @@ static int64_t
|
|
|
sort__srcline_cmp(struct hist_entry *left, struct hist_entry *right)
|
|
|
{
|
|
|
if (!left->srcline)
|
|
|
- left->srcline = hist_entry__get_srcline(left);
|
|
|
+ left->srcline = hist_entry__srcline(left);
|
|
|
if (!right->srcline)
|
|
|
- right->srcline = hist_entry__get_srcline(right);
|
|
|
+ right->srcline = hist_entry__srcline(right);
|
|
|
|
|
|
return strcmp(right->srcline, left->srcline);
|
|
|
}
|
|
@@ -351,7 +351,7 @@ static int hist_entry__srcline_snprintf(struct hist_entry *he, char *bf,
|
|
|
size_t size, unsigned int width)
|
|
|
{
|
|
|
if (!he->srcline)
|
|
|
- he->srcline = hist_entry__get_srcline(he);
|
|
|
+ he->srcline = hist_entry__srcline(he);
|
|
|
|
|
|
return repsep_snprintf(bf, size, "%-.*s", width, he->srcline);
|
|
|
}
|