Lines Matching full:he
116 static int hist_entry__thread_snprintf(struct hist_entry *he, char *bf, in hist_entry__thread_snprintf() argument
119 const char *comm = thread__comm_str(he->thread); in hist_entry__thread_snprintf()
122 return repsep_snprintf(bf, size, "%7d:%-*.*s", thread__tid(he->thread), in hist_entry__thread_snprintf()
126 static int hist_entry__thread_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__thread_filter() argument
133 return th && !RC_CHK_EQUAL(he->thread, th); in hist_entry__thread_filter()
152 static int hist_entry__tgid_snprintf(struct hist_entry *he, char *bf, in hist_entry__tgid_snprintf() argument
155 int tgid = thread__pid(he->thread); in hist_entry__tgid_snprintf()
159 if (thread__pid(he->thread) == thread__tid(he->thread)) { in hist_entry__tgid_snprintf()
160 comm = thread__comm_str(he->thread); in hist_entry__tgid_snprintf()
162 struct maps *maps = thread__maps(he->thread); in hist_entry__tgid_snprintf()
202 static int hist_entry__simd_snprintf(struct hist_entry *he, char *bf, in hist_entry__simd_snprintf() argument
207 if (!he->simd_flags.arch) in hist_entry__simd_snprintf()
210 name = hist_entry__get_simd_name(&he->simd_flags); in hist_entry__simd_snprintf()
212 if (he->simd_flags.pred & SIMD_OP_FLAGS_PRED_EMPTY) in hist_entry__simd_snprintf()
214 else if (he->simd_flags.pred & SIMD_OP_FLAGS_PRED_PARTIAL) in hist_entry__simd_snprintf()
252 static int hist_entry__comm_snprintf(struct hist_entry *he, char *bf, in hist_entry__comm_snprintf() argument
255 return repsep_snprintf(bf, size, "%-*.*s", width, width, comm__str(he->comm)); in hist_entry__comm_snprintf()
308 static int hist_entry__dso_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_snprintf() argument
311 return _hist_entry__dso_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_snprintf()
314 static int hist_entry__dso_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__dso_filter() argument
321 return dso && (!he->ms.map || map__dso(he->ms.map) != dso); in hist_entry__dso_filter()
435 int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, size_t size, unsigned int width) in hist_entry__sym_snprintf() argument
437 return _hist_entry__sym_snprintf(&he->ms, he->ip, in hist_entry__sym_snprintf()
438 he->level, bf, size, width); in hist_entry__sym_snprintf()
441 static int hist_entry__sym_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__sym_filter() argument
448 return sym && (!he->ms.sym || !strstr(he->ms.sym->name, sym)); in hist_entry__sym_filter()
487 hist_entry__symoff_snprintf(struct hist_entry *he, char *bf, size_t size, unsigned int width) in hist_entry__symoff_snprintf() argument
489 struct symbol *sym = he->ms.sym; in hist_entry__symoff_snprintf()
492 return repsep_snprintf(bf, size, "[%c] %-#.*llx", he->level, width - 4, he->ip); in hist_entry__symoff_snprintf()
494 return repsep_snprintf(bf, size, "[%c] %s+0x%llx", he->level, sym->name, he->ip - sym->start); in hist_entry__symoff_snprintf()
508 char *hist_entry__srcline(struct hist_entry *he) in hist_entry__srcline() argument
510 return map__srcline(he->ms.map, he->ip, he->ms.sym); in hist_entry__srcline()
543 sort__srcline_init(struct hist_entry *he) in sort__srcline_init() argument
545 if (!he->srcline) in sort__srcline_init()
546 he->srcline = hist_entry__srcline(he); in sort__srcline_init()
549 static int hist_entry__srcline_snprintf(struct hist_entry *he, char *bf, in hist_entry__srcline_snprintf() argument
552 return repsep_snprintf(bf, size, "%-.*s", width, he->srcline); in hist_entry__srcline_snprintf()
596 static void sort__srcline_from_init(struct hist_entry *he) in sort__srcline_from_init() argument
598 if (!he->branch_info->srcline_from) in sort__srcline_from_init()
599 he->branch_info->srcline_from = addr_map_symbol__srcline(&he->branch_info->from); in sort__srcline_from_init()
602 static int hist_entry__srcline_from_snprintf(struct hist_entry *he, char *bf, in hist_entry__srcline_from_snprintf() argument
605 return repsep_snprintf(bf, size, "%-*.*s", width, width, he->branch_info->srcline_from); in hist_entry__srcline_from_snprintf()
644 static void sort__srcline_to_init(struct hist_entry *he) in sort__srcline_to_init() argument
646 if (!he->branch_info->srcline_to) in sort__srcline_to_init()
647 he->branch_info->srcline_to = addr_map_symbol__srcline(&he->branch_info->to); in sort__srcline_to_init()
650 static int hist_entry__srcline_to_snprintf(struct hist_entry *he, char *bf, in hist_entry__srcline_to_snprintf() argument
653 return repsep_snprintf(bf, size, "%-*.*s", width, width, he->branch_info->srcline_to); in hist_entry__srcline_to_snprintf()
666 static int hist_entry__sym_ipc_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_ipc_snprintf() argument
670 struct symbol *sym = he->ms.sym; in hist_entry__sym_ipc_snprintf()
699 static int hist_entry__sym_ipc_null_snprintf(struct hist_entry *he in hist_entry__sym_ipc_null_snprintf()
727 struct hist_entry *he, char *bf, size_t size, unsigned int width) in hist_entry__callchain_branch_predicted_snprintf() argument
733 callchain_branch_counts(he->callchain, &branch_count, in hist_entry__callchain_branch_predicted_snprintf()
759 static int hist_entry__callchain_branch_abort_snprintf(struct hist_entry *he, in hist_entry__callchain_branch_abort_snprintf() argument
766 callchain_branch_counts(he->callchain, &branch_count, in hist_entry__callchain_branch_abort_snprintf()
789 static int hist_entry__callchain_branch_cycles_snprintf(struct hist_entry *he, in hist_entry__callchain_branch_cycles_snprintf() argument
796 callchain_branch_counts(he->callchain, &branch_count, in hist_entry__callchain_branch_cycles_snprintf()
861 static void sort__srcfile_init(struct hist_entry *he) in sort__srcfile_init() argument
863 if (!he->srcfile) in sort__srcfile_init()
864 he->srcfile = hist_entry__get_srcfile(he); in sort__srcfile_init()
867 static int hist_entry__srcfile_snprintf(struct hist_entry *he, char *bf, in hist_entry__srcfile_snprintf() argument
870 return repsep_snprintf(bf, size, "%-.*s", width, he->srcfile); in hist_entry__srcfile_snprintf()
897 static int hist_entry__parent_snprintf(struct hist_entry *he, char *bf, in hist_entry__parent_snprintf() argument
901 he->parent ? he->parent->name : "[other]"); in hist_entry__parent_snprintf()
919 static int hist_entry__cpu_snprintf(struct hist_entry *he, char *bf, in hist_entry__cpu_snprintf() argument
922 return repsep_snprintf(bf, size, "%*.*d", width, width, he->cpu); in hist_entry__cpu_snprintf()
940 static int hist_entry__parallelism_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__parallelism_filter() argument
947 return test_bit(he->parallelism, parallelism_filter); in hist_entry__parallelism_filter()
950 static int hist_entry__parallelism_snprintf(struct hist_entry *he, char *bf, in hist_entry__parallelism_snprintf() argument
953 return repsep_snprintf(bf, size, "%*d", width, he->parallelism); in hist_entry__parallelism_snprintf()
989 static int hist_entry__cgroup_id_snprintf(struct hist_entry *he, in hist_entry__cgroup_id_snprintf() argument
993 return repsep_snprintf(bf, size, "%lu/0x%lx", he->cgroup_id.dev, in hist_entry__cgroup_id_snprintf()
994 he->cgroup_id.ino); in hist_entry__cgroup_id_snprintf()
1012 static int hist_entry__cgroup_snprintf(struct hist_entry *he, in hist_entry__cgroup_snprintf() argument
1018 if (he->cgroup) { in hist_entry__cgroup_snprintf()
1019 struct cgroup *cgrp = cgroup__find(maps__machine(he->ms.maps)->env, in hist_entry__cgroup_snprintf()
1020 he->cgroup); in hist_entry__cgroup_snprintf()
1045 static int hist_entry__socket_snprintf(struct hist_entry *he, char *bf, in hist_entry__socket_snprintf() argument
1048 return repsep_snprintf(bf, size, "%*.*d", width, width-3, he->socket); in hist_entry__socket_snprintf()
1051 static int hist_entry__socket_filter(struct hist_entry *he, int type, const void *arg) in hist_entry__socket_filter() argument
1058 return sk >= 0 && he->socket != sk; in hist_entry__socket_filter()
1077 static int hist_entry__time_snprintf(struct hist_entry *he, char *bf, in hist_entry__time_snprintf() argument
1083 timestamp__scnprintf_nsec(he->time, he_time, in hist_entry__time_snprintf()
1086 timestamp__scnprintf_usec(he->time, he_time, in hist_entry__time_snprintf()
1102 static char *get_trace_output(struct hist_entry *he) in get_trace_output() argument
1107 .data = he->raw_data, in get_trace_output()
1108 .size = he->raw_size, in get_trace_output()
1112 evsel = hists_to_evsel(he->hists); in get_trace_output()
1118 tep_print_fields(&seq, he->raw_data, he->raw_size, tp_format); in get_trace_output()
1147 static int hist_entry__trace_snprintf(struct hist_entry *he, char *bf, in hist_entry__trace_snprintf() argument
1152 evsel = hists_to_evsel(he->hists); in hist_entry__trace_snprintf()
1156 if (he->trace_output == NULL) in hist_entry__trace_snprintf()
1157 he->trace_output = get_trace_output(he); in hist_entry__trace_snprintf()
1158 return repsep_snprintf(bf, size, "%-.*s", width, he->trace_output); in hist_entry__trace_snprintf()
1181 static int hist_entry__dso_from_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_from_snprintf() argument
1184 if (he->branch_info) in hist_entry__dso_from_snprintf()
1185 return _hist_entry__dso_snprintf(he->branch_info->from.ms.map, in hist_entry__dso_from_snprintf()
1191 static int hist_entry__dso_from_filter(struct hist_entry *he, int type, in hist_entry__dso_from_filter() argument
1199 return dso && (!he->branch_info || !he->branch_info->from.ms.map || in hist_entry__dso_from_filter()
1200 map__dso(he->branch_info->from.ms.map) != dso); in hist_entry__dso_from_filter()
1213 static int hist_entry__dso_to_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_to_snprintf() argument
1216 if (he->branch_info) in hist_entry__dso_to_snprintf()
1217 return _hist_entry__dso_snprintf(he->branch_info->to.ms.map, in hist_entry__dso_to_snprintf()
1223 static int hist_entry__dso_to_filter(struct hist_entry *he, int type, in hist_entry__dso_to_filter() argument
1231 return dso && (!he->branch_info || !he->branch_info->to.ms.map || in hist_entry__dso_to_filter()
1232 map__dso(he->branch_info->to.ms.map) != dso); in hist_entry__dso_to_filter()
1269 static int hist_entry__sym_from_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_from_snprintf() argument
1272 if (he->branch_info) { in hist_entry__sym_from_snprintf()
1273 struct addr_map_symbol *from = &he->branch_info->from; in hist_entry__sym_from_snprintf()
1282 static int hist_entry__sym_to_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_to_snprintf() argument
1285 if (he->branch_info) { in hist_entry__sym_to_snprintf()
1286 struct addr_map_symbol *to = &he->branch_info->to; in hist_entry__sym_to_snprintf()
1295 static int hist_entry__sym_from_filter(struct hist_entry *he, int type, in hist_entry__sym_from_filter() argument
1303 return sym && !(he->branch_info && he->branch_info->from.ms.sym && in hist_entry__sym_from_filter()
1304 strstr(he->branch_info->from.ms.sym->name, sym)); in hist_entry__sym_from_filter()
1307 static int hist_entry__sym_to_filter(struct hist_entry *he, int type, in hist_entry__sym_to_filter() argument
1315 return sym && !(he->branch_info && he->branch_info->to.ms.sym && in hist_entry__sym_to_filter()
1316 strstr(he->branch_info->to.ms.sym->name, sym)); in hist_entry__sym_to_filter()
1382 static int hist_entry__addr_from_snprintf(struct hist_entry *he, char *bf, in hist_entry__addr_from_snprintf() argument
1385 if (he->branch_info) { in hist_entry__addr_from_snprintf()
1386 struct addr_map_symbol *from = &he->branch_info->from; in hist_entry__addr_from_snprintf()
1389 he->level, bf, size, width); in hist_entry__addr_from_snprintf()
1395 static int hist_entry__addr_to_snprintf(struct hist_entry *he, char *bf, in hist_entry__addr_to_snprintf() argument
1398 if (he->branch_info) { in hist_entry__addr_to_snprintf()
1399 struct addr_map_symbol *to = &he->branch_info->to; in hist_entry__addr_to_snprintf()
1402 he->level, bf, size, width); in hist_entry__addr_to_snprintf()
1486 static int hist_entry__mispredict_snprintf(struct hist_entry *he, char *bf, in hist_entry__mispredict_snprintf() argument
1490 if (he->branch_info) { in hist_entry__mispredict_snprintf()
1491 if (he->branch_info->flags.predicted) in hist_entry__mispredict_snprintf()
1493 else if (he->branch_info->flags.mispred) in hist_entry__mispredict_snprintf()
1510 static int hist_entry__cycles_snprintf(struct hist_entry *he, char *bf, in hist_entry__cycles_snprintf() argument
1513 if (!he->branch_info) in hist_entry__cycles_snprintf()
1515 if (he->branch_info->flags.cycles == 0) in hist_entry__cycles_snprintf()
1518 he->branch_info->flags.cycles); in hist_entry__cycles_snprintf()
1542 static int hist_entry__daddr_snprintf(struct hist_entry *he, char *bf, in hist_entry__daddr_snprintf() argument
1548 if (he->mem_info) { in hist_entry__daddr_snprintf()
1549 addr = mem_info__daddr(he->mem_info)->addr; in hist_entry__daddr_snprintf()
1550 ms = &mem_info__daddr(he->mem_info)->ms; in hist_entry__daddr_snprintf()
1552 return _hist_entry__sym_snprintf(ms, addr, he->level, bf, size, width); in hist_entry__daddr_snprintf()
1568 static int hist_entry__iaddr_snprintf(struct hist_entry *he, char *bf, in hist_entry__iaddr_snprintf() argument
1574 if (he->mem_info) { in hist_entry__iaddr_snprintf()
1575 addr = mem_info__iaddr(he->mem_info)->addr; in hist_entry__iaddr_snprintf()
1576 ms = &mem_info__iaddr(he->mem_info)->ms; in hist_entry__iaddr_snprintf()
1578 return _hist_entry__sym_snprintf(ms, addr, he->level, bf, size, width); in hist_entry__iaddr_snprintf()
1595 static int hist_entry__dso_daddr_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_daddr_snprintf() argument
1600 if (he->mem_info) in hist_entry__dso_daddr_snprintf()
1601 map = mem_info__daddr(he->mem_info)->ms.map; in hist_entry__dso_daddr_snprintf()
1625 static int hist_entry__locked_snprintf(struct hist_entry *he, char *bf, in hist_entry__locked_snprintf() argument
1630 perf_mem__lck_scnprintf(out, sizeof(out), he->mem_info); in hist_entry__locked_snprintf()
1653 static int hist_entry__tlb_snprintf(struct hist_entry *he, char *bf, in hist_entry__tlb_snprintf() argument
1658 perf_mem__tlb_scnprintf(out, sizeof(out), he->mem_info); in hist_entry__tlb_snprintf()
1681 static int hist_entry__lvl_snprintf(struct hist_entry *he, char *bf, in hist_entry__lvl_snprintf() argument
1686 perf_mem__lvl_scnprintf(out, sizeof(out), he->mem_info); in hist_entry__lvl_snprintf()
1709 static int hist_entry__snoop_snprintf(struct hist_entry *he, char *bf, in hist_entry__snoop_snprintf() argument
1714 perf_mem__snp_scnprintf(out, sizeof(out), he->mem_info); in hist_entry__snoop_snprintf()
1783 static int hist_entry__dcacheline_snprintf(struct hist_entry *he, char *bf, in hist_entry__dcacheline_snprintf() argument
1789 char level = he->level; in hist_entry__dcacheline_snprintf()
1791 if (he->mem_info) { in hist_entry__dcacheline_snprintf()
1792 struct map *map = mem_info__daddr(he->mem_info)->ms.map; in hist_entry__dcacheline_snprintf()
1796 addr = cl_address(mem_info__daddr(he->mem_info)->al_addr, chk_double_cl); in hist_entry__dcacheline_snprintf()
1797 ms = &mem_info__daddr(he->mem_info)->ms; in hist_entry__dcacheline_snprintf()
1800 if ((he->cpumode != PERF_RECORD_MISC_KERNEL) && in hist_entry__dcacheline_snprintf()
1824 static int hist_entry__local_weight_snprintf(struct hist_entry *he, char *bf, in hist_entry__local_weight_snprintf() argument
1827 return repsep_snprintf(bf, size, "%-*llu", width, he->weight); in hist_entry__local_weight_snprintf()
1837 static int hist_entry__global_weight_snprintf(struct hist_entry *he, char *bf, in hist_entry__global_weight_snprintf() argument
1841 he->weight * he->stat.nr_events); in hist_entry__global_weight_snprintf()
1857 static int hist_entry__local_ins_lat_snprintf(struct hist_entry *he, char *bf, in hist_entry__local_ins_lat_snprintf() argument
1860 return repsep_snprintf(bf, size, "%-*u", width, he->ins_lat); in hist_entry__local_ins_lat_snprintf()
1870 static int hist_entry__global_ins_lat_snprintf(struct hist_entry *he, char *bf, in hist_entry__global_ins_lat_snprintf() argument
1874 he->ins_lat * he->stat.nr_events); in hist_entry__global_ins_lat_snprintf()
1890 static int hist_entry__global_p_stage_cyc_snprintf(struct hist_entry *he, char *bf, in hist_entry__global_p_stage_cyc_snprintf() argument
1893 return repsep_snprintf(bf, size, "%-*u", width, he->weight3 * he->stat.nr_events); in hist_entry__global_p_stage_cyc_snprintf()
1897 static int hist_entry__p_stage_cyc_snprintf(struct hist_entry *he, char *bf, in hist_entry__p_stage_cyc_snprintf() argument
1900 return repsep_snprintf(bf, size, "%-*u", width, he->weight3); in hist_entry__p_stage_cyc_snprintf()
1992 static int hist_entry__blocked_snprintf(struct hist_entry *he, char *bf, in hist_entry__blocked_snprintf() argument
1997 perf_mem__blk_scnprintf(out, sizeof(out), he->mem_info); in hist_entry__blocked_snprintf()
2021 static int hist_entry__phys_daddr_snprintf(struct hist_entry *he, char *bf, in hist_entry__phys_daddr_snprintf() argument
2028 addr = mem_info__daddr(he->mem_info)->phys_addr; in hist_entry__phys_daddr_snprintf()
2030 ret += repsep_snprintf(bf + ret, size - ret, "[%c] ", he->level); in hist_entry__phys_daddr_snprintf()
2062 static int hist_entry__data_page_size_snprintf(struct hist_entry *he, char *bf, in hist_entry__data_page_size_snprintf() argument
2068 get_page_size_name(mem_info__daddr(he->mem_info)->data_page_size, str)); in hist_entry__data_page_size_snprintf()
2087 static int hist_entry__code_page_size_snprintf(struct hist_entry *he, char *bf, in hist_entry__code_page_size_snprintf() argument
2093 get_page_size_name(he->code_page_size, str)); in hist_entry__code_page_size_snprintf()
2113 static int hist_entry__abort_snprintf(struct hist_entry *he, char *bf, in hist_entry__abort_snprintf() argument
2118 if (he->branch_info) { in hist_entry__abort_snprintf()
2119 if (he->branch_info->flags.abort) in hist_entry__abort_snprintf()
2145 static int hist_entry__in_tx_snprintf(struct hist_entry *he, char *bf, in hist_entry__in_tx_snprintf() argument
2150 if (he->branch_info) { in hist_entry__in_tx_snprintf()
2151 if (he->branch_info->flags.in_tx) in hist_entry__in_tx_snprintf()
2208 static int hist_entry__transaction_snprintf(struct hist_entry *he, char *bf, in hist_entry__transaction_snprintf() argument
2211 u64 t = he->transaction; in hist_entry__transaction_snprintf()
2265 static int hist_entry__sym_size_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_size_snprintf() argument
2268 return _hist_entry__sym_size_snprintf(he->ms.sym, bf, size, width); in hist_entry__sym_size_snprintf()
2304 static int hist_entry__dso_size_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_size_snprintf() argument
2307 return _hist_entry__dso_size_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_size_snprintf()
2335 static int hist_entry__addr_snprintf(struct hist_entry *he, char *bf, in hist_entry__addr_snprintf() argument
2338 u64 ip = he->ip; in hist_entry__addr_snprintf()
2339 struct map *map = he->ms.map; in hist_entry__addr_snprintf()
2369 static void sort__type_init(struct hist_entry *he) in sort__type_init() argument
2371 if (he->mem_type) in sort__type_init()
2374 he->mem_type = hist_entry__get_data_type(he); in sort__type_init()
2375 if (he->mem_type == NULL) { in sort__type_init()
2376 he->mem_type = &unknown_type; in sort__type_init()
2377 he->mem_type_off = 0; in sort__type_init()
2406 static int hist_entry__type_snprintf(struct hist_entry *he, char *bf, in hist_entry__type_snprintf() argument
2409 return repsep_snprintf(bf, size, "%-*s", width, he->mem_type->self.type_name); in hist_entry__type_snprintf()
2447 static int hist_entry__typeoff_snprintf(struct hist_entry *he, char *bf, in hist_entry__typeoff_snprintf() argument
2450 struct annotated_data_type *he_type = he->mem_type; in hist_entry__typeoff_snprintf()
2458 he->mem_type_off)) in hist_entry__typeoff_snprintf()
2462 he->mem_type_off, buf); in hist_entry__typeoff_snprintf()
2507 static int hist_entry__typecln_snprintf(struct hist_entry *he, char *bf, in hist_entry__typecln_snprintf() argument
2510 struct annotated_data_type *he_type = he->mem_type; in hist_entry__typecln_snprintf()
2513 he->mem_type_off / TYPE_CACHELINE_SIZE); in hist_entry__typecln_snprintf()
2754 struct hist_entry *he) in __sort__hpp_entry() argument
2762 len = hists__col_len(he->hists, hse->se->se_width_idx); in __sort__hpp_entry()
2764 return hse->se->se_snprintf(he, hpp->buf, hpp->size, len); in __sort__hpp_entry()
2854 static void hse_init(struct perf_hpp_fmt *fmt, struct hist_entry *he) in hse_init() argument
2864 hse->se->se_init(he); in hse_init()
2923 int hist_entry__filter(struct hist_entry *he, int type, const void *arg) in hist_entry__filter() argument
2930 perf_hpp_list__for_each_format(he->hpp_list, fmt) { in hist_entry__filter()
2942 r = hse->se->se_filter(he, type, arg); in hist_entry__filter()
3021 struct hist_entry *he) in update_dynamic_len() argument
3032 if (!he->trace_output) in update_dynamic_len()
3033 he->trace_output = get_trace_output(he); in update_dynamic_len()
3036 str = he->trace_output; in update_dynamic_len()
3104 struct hist_entry *he) in __sort__hde_entry() argument
3122 if (!he->trace_output) in __sort__hde_entry()
3123 he->trace_output = get_trace_output(he); in __sort__hde_entry()
3127 str = he->trace_output; in __sort__hde_entry()
3156 tep_print_field(&seq, he->raw_data, hde->field); in __sort__hde_entry()
3221 static void __sort__hde_init(struct perf_hpp_fmt *fmt, struct hist_entry *he) in __sort__hde_init() argument
3229 update_dynamic_len(hde, he); in __sort__hde_init()