Home
last modified time | relevance | path

Searched refs:srcline (Results 1 – 25 of 27) sorted by relevance

12

/tools/perf/util/
A Dsrcline.c62 ilist->srcline = srcline; in inline_list__append()
82 char *srcline; in srcline_from_fileline() local
93 return srcline; in srcline_from_fileline()
171 srcline = in addr2line()
881 char *srcline; in __get_srcline() local
898 if (!srcline) in __get_srcline()
903 return srcline; in __get_srcline()
922 return srcline; in __get_srcline()
960 free(*srcline); in zfree_srcline()
962 *srcline = NULL; in zfree_srcline()
[all …]
A Dsrcline.h19 void zfree_srcline(char **srcline);
23 void srcline__tree_insert(struct rb_root_cached *tree, u64 addr, char *srcline);
34 char *srcline; member
A Ddisasm_bpf.c119 const char *srcline; in symbol__disassemble_bpf() local
131 srcline = btf__name_by_offset(btf, linfo->line_off); in symbol__disassemble_bpf()
134 srcline = NULL; in symbol__disassemble_bpf()
140 if (!annotate_opts.hide_src_code && srcline) { in symbol__disassemble_bpf()
142 args->line = strdup(srcline); in symbol__disassemble_bpf()
A Daddr_location.h17 const char *srcline; member
A Dcallchain.c593 call->srcline = cursor_node->srcline; in fill_node()
733 match = match_chain_strings(cnode->srcline, node->srcline); in match_chain()
1081 const char *srcline) in callchain_cursor_append() argument
1099 node->srcline = srcline; in callchain_cursor_append()
1147 al->srcline = node->srcline; in fill_callchain_info()
1191 if (show_srcline && cl->srcline) in callchain_list__sym_name()
1193 cl->ms.sym->name, cl->srcline, in callchain_list__sym_name()
1647 node->branch_from, node->srcline); in callchain_cursor__copy()
1704 pair_chain->srcline); in chain_match()
1730 if (!base_chain->srcline || !pair_chain->srcline) { in callchain_cnode_matched()
[all …]
A Daddr_location.c13 al->srcline = NULL; in addr_location__init()
A Dcallchain.h122 const char *srcline; member
146 const char *srcline; member
207 const char *srcline);
A Dmap.c502 char *srcline = map__srcline(map, addr, NULL); in map__fprintf_srcline() local
503 if (srcline != SRCLINE_UNKNOWN) in map__fprintf_srcline()
504 ret = fprintf(fp, "%s%s", prefix, srcline); in map__fprintf_srcline()
505 zfree_srcline(&srcline); in map__fprintf_srcline()
A Dmachine.c2068 char *srcline = NULL; in callchain_srcline() local
2072 return srcline; in callchain_srcline()
2076 if (!srcline) { in callchain_srcline()
2085 return srcline; in callchain_srcline()
2109 const char *srcline = NULL; in add_callchain_ip() local
2114 al.srcline = NULL; in add_callchain_ip()
2172 srcline = callchain_srcline(&ms, al.addr); in add_callchain_ip()
2454 cnode->srcline); in lbr_callchain_add_stitched_lbr_ip()
2923 NULL, 0, 0, 0, ilist->srcline); in append_inlines()
2936 const char *srcline = NULL; in unwind_entry() local
[all …]
A Dhist.c237 if (h->srcline) { in hists__calc_col_len()
238 len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header)); in hists__calc_col_len()
576 if (he->srcline && he->srcline != SRCLINE_UNKNOWN) { in hist_entry__init()
577 he->srcline = strdup(he->srcline); in hist_entry__init()
578 if (he->srcline == NULL) in hist_entry__init()
600 zfree(&he->srcline); in hist_entry__init()
819 .srcline = (char *) al->srcline, in __hists__add_entry()
1241 .srcline = (char *) al->srcline, in iter_add_next_cumulative_entry()
1488 zfree_srcline(&he->srcline); in hist_entry__delete()
1676 he->srcline = NULL; in hierarchy_insert_entry()
[all …]
A Dsort.c528 if (!left->srcline) in sort__srcline_collapse()
529 left->srcline = hist_entry__srcline(left); in sort__srcline_collapse()
530 if (!right->srcline) in sort__srcline_collapse()
531 right->srcline = hist_entry__srcline(right); in sort__srcline_collapse()
533 return strcmp(right->srcline, left->srcline); in sort__srcline_collapse()
545 if (!he->srcline) in sort__srcline_init()
546 he->srcline = hist_entry__srcline(he); in sort__srcline_init()
552 return repsep_snprintf(bf, size, "%-.*s", width, he->srcline); in hist_entry__srcline_snprintf()
2823 MK_SORT_ENTRY_CHK(srcline) in MK_SORT_ENTRY_CHK() argument
A Ddlfilter.c333 .srcline = dlfilter__srcline,
A Dhist.h292 char *srcline; member
A Devent.c784 al->srcline = NULL; in machine__resolve()
A DBuild115 perf-util-y += srcline.o
/tools/perf/include/perf/
A Dperf_dlfilter.h113 const char *(*srcline)(void *ctx, __u32 *line_number); member
/tools/perf/Documentation/
A Dtips.txt26 If you have debuginfo enabled, try: perf report -s sym,srcline
45 Order by the overhead of source file name and line number: perf report -s srcline
A Dperf-dlfilter.txt156 const char *(*srcline)(void *ctx, __u32 *line_number);
176 'srcline' return source file name and line number.
A Dperf-report.txt90 pid, comm, dso, symbol, parent, cpu, socket, srcline, weight,
107 - srcline: filename and line number executed at the time of sample. The
296 - srcline: compare on source filename and line number
534 Show the full path for source files for srcline output.
A Dperf-diff.txt61 Sort by key(s): pid, comm, dso, symbol, cpu, parent, srcline.
A Dperf-script.txt134 srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output,
398 Show the full path for source files for srcline output.
A Dperf-top.txt133 Sort by key(s): pid, comm, dso, symbol, parent, srcline, weight,
/tools/perf/dlfilters/
A Ddlfilter-test-api-v0.c108 const char *(*srcline)(void *ctx, __u32 *line_number); member
A Ddlfilter-test-api-v2.c118 const char *(*srcline)(void *ctx, __u32 *line_number); member
/tools/perf/util/scripting-engines/
A Dtrace-event-python.c460 if (node->srcline && strcmp(":0", node->srcline)) { in python_process_callchain()
463 _PyUnicode_FromString(node->srcline)); in python_process_callchain()

Completed in 62 milliseconds

12