Searched refs:tp_format (Results 1 – 16 of 16) sorted by relevance
/linux-6.3-rc2/tools/perf/util/ |
A D | trace-event.c | 74 tp_format(const char *sys, const char *name) in tp_format() function 109 return tp_format(sys, name); in trace_event__tp_format()
|
A D | trace-event-scripting.c | 30 if (evsel->tp_format) in scripting_context__update() 31 c->pevent = evsel->tp_format->tep; in scripting_context__update()
|
A D | python.c | 475 if (!evsel->tp_format) { in get_tracepoint_field() 476 struct tep_event *tp_format; in get_tracepoint_field() local 478 tp_format = trace_event__tp_format_id(evsel->core.attr.config); in get_tracepoint_field() 479 if (IS_ERR_OR_NULL(tp_format)) in get_tracepoint_field() 482 evsel->tp_format = tp_format; in get_tracepoint_field() 485 field = tep_find_any_field(evsel->tp_format, str); in get_tracepoint_field() 1329 struct tep_event *tp_format; in pyrf__tracepoint() 1338 tp_format = trace_event__tp_format(sys, name); in pyrf__tracepoint() 1339 if (IS_ERR(tp_format)) in pyrf__tracepoint() 1342 return _PyLong_FromLong(tp_format->id); in pyrf__tracepoint()
|
A D | evsel_fprintf.c | 89 field = evsel->tp_format->format.fields; in evsel__fprintf()
|
A D | data-convert-bt.c | 429 struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; in add_tracepoint_values() 430 struct tep_format_field *fields = evsel->tp_format->format.fields; in add_tracepoint_values() 1067 struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; in add_tracepoint_types() 1068 struct tep_format_field *fields = evsel->tp_format->format.fields; in add_tracepoint_types()
|
A D | evsel.c | 444 evsel->tp_format = orig->tp_format; in evsel__clone() 503 evsel->tp_format = trace_event__tp_format(sys, name); in evsel__newtp_idx() 504 if (IS_ERR(evsel->tp_format)) { in evsel__newtp_idx() 505 err = PTR_ERR(evsel->tp_format); in evsel__newtp_idx() 510 attr.config = evsel->tp_format->id; in evsel__newtp_idx() 2778 return tep_find_field(evsel->tp_format, name); in evsel__field()
|
A D | data-convert-json.c | 229 fields = tep_event_fields(evsel->tp_format); in process_sample_event()
|
A D | evsel.h | 76 struct tep_event *tp_format; member
|
A D | sort.c | 862 evsel->tp_format); in get_trace_output() 864 tep_print_event(evsel->tp_format->tep, in get_trace_output() 2892 field = evsel->tp_format->format.fields; in add_evsel_fields() 2931 field = tep_find_any_field(evsel->tp_format, field_name); in add_all_matching_fields() 3013 struct tep_format_field *field = tep_find_any_field(evsel->tp_format, field_name); in add_dynamic_entry()
|
A D | header.c | 4103 if (evsel->tp_format) in evsel__prepare_tracepoint_event() 4124 evsel->tp_format = event; in evsel__prepare_tracepoint_event()
|
/linux-6.3-rc2/tools/perf/ |
A D | builtin-trace.c | 1215 struct tep_event *tp_format; member 1815 if (IS_ERR(sc->tp_format)) { in trace__read_syscall_info() 1817 return PTR_ERR(sc->tp_format); in trace__read_syscall_info() 1820 if (syscall__alloc_arg_fmts(sc, IS_ERR(sc->tp_format) ? in trace__read_syscall_info() 1824 sc->args = sc->tp_format->format.fields; in trace__read_syscall_info() 2067 } else if (IS_ERR(sc->tp_format)) { in syscall__scnprintf_args() 2828 } else if (evsel->tp_format) { 3124 if (!et || !evsel->tp_format || strcmp(evsel->tp_format->system, "syscalls")) 3719 if (evsel->tp_format == NULL || fmt == NULL) 4480 if (evsel->priv || !evsel->tp_format) [all …]
|
A D | builtin-kmem.c | 765 tep_print_event(evsel->tp_format->tep, in parse_gfp_flags() 2012 kmem_page_size = tep_get_page_size(evsel->tp_format->tep); in cmd_kmem()
|
A D | builtin-kwork.c | 901 struct tep_print_arg *args = evsel->tp_format->print_fmt.args; in evsel__softirq_name()
|
A D | builtin-script.c | 2178 event_format__fprintf(evsel->tp_format, sample->cpu, in process_event()
|
/linux-6.3-rc2/tools/perf/util/scripting-engines/ |
A D | trace-event-perl.c | 344 struct tep_event *event = evsel->tp_format; in perl_process_tracepoint()
|
A D | trace-event-python.c | 914 struct tep_event *event = evsel->tp_format; in python_process_tracepoint()
|
Completed in 76 milliseconds