Home
last modified time | relevance | path

Searched refs:tp_format (Results 1 – 13 of 13) sorted by relevance

/tools/perf/util/
Dtrace-event.c75 tp_format(const char *sys, const char *name) in tp_format() function
110 return tp_format(sys, name); in trace_event__tp_format()
Dpython.c400 if (!evsel->tp_format) { in get_tracepoint_field()
401 struct tep_event *tp_format; in get_tracepoint_field() local
403 tp_format = trace_event__tp_format_id(evsel->core.attr.config); in get_tracepoint_field()
404 if (!tp_format) in get_tracepoint_field()
407 evsel->tp_format = tp_format; in get_tracepoint_field()
410 field = tep_find_any_field(evsel->tp_format, str); in get_tracepoint_field()
1256 struct tep_event *tp_format; in pyrf__tracepoint() local
1265 tp_format = trace_event__tp_format(sys, name); in pyrf__tracepoint()
1266 if (IS_ERR(tp_format)) in pyrf__tracepoint()
1269 return _PyLong_FromLong(tp_format->id); in pyrf__tracepoint()
Devsel_fprintf.c85 field = evsel->tp_format->format.fields; in perf_evsel__fprintf()
Ddata-convert-bt.c420 struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; in add_tracepoint_values()
421 struct tep_format_field *fields = evsel->tp_format->format.fields; in add_tracepoint_values()
1058 struct tep_format_field *common_fields = evsel->tp_format->format.common_fields; in add_tracepoint_types()
1059 struct tep_format_field *fields = evsel->tp_format->format.fields; in add_tracepoint_types()
Devsel.h55 struct tep_event *tp_format; member
Devsel.c354 evsel->tp_format = trace_event__tp_format(sys, name); in perf_evsel__newtp_idx()
355 if (IS_ERR(evsel->tp_format)) { in perf_evsel__newtp_idx()
356 err = PTR_ERR(evsel->tp_format); in perf_evsel__newtp_idx()
361 attr.config = evsel->tp_format->id; in perf_evsel__newtp_idx()
2258 return tep_find_field(evsel->tp_format, name); in perf_evsel__field()
Dsort.c714 evsel->tp_format); in get_trace_output()
716 tep_print_event(evsel->tp_format->tep, in get_trace_output()
2379 field = evsel->tp_format->format.fields; in add_evsel_fields()
2418 field = tep_find_any_field(evsel->tp_format, field_name); in add_all_matching_fields()
2485 field = tep_find_any_field(evsel->tp_format, field_name); in add_dynamic_entry()
Dheader.c3491 if (evsel->tp_format) in perf_evsel__prepare_tracepoint_event()
3512 evsel->tp_format = event; in perf_evsel__prepare_tracepoint_event()
/tools/perf/
Dbuiltin-trace.c992 struct tep_event *tp_format; member
1525 sc->tp_format = trace_event__tp_format("syscalls", tp_name); in trace__read_syscall_info()
1527 if (IS_ERR(sc->tp_format) && sc->fmt && sc->fmt->alias) { in trace__read_syscall_info()
1529 sc->tp_format = trace_event__tp_format("syscalls", tp_name); in trace__read_syscall_info()
1532 if (syscall__alloc_arg_fmts(sc, IS_ERR(sc->tp_format) ? 6 : sc->tp_format->format.nr_fields)) in trace__read_syscall_info()
1535 if (IS_ERR(sc->tp_format)) in trace__read_syscall_info()
1536 return PTR_ERR(sc->tp_format); in trace__read_syscall_info()
1538 sc->args = sc->tp_format->format.fields; in trace__read_syscall_info()
1767 } else if (IS_ERR(sc->tp_format)) { in syscall__scnprintf_args()
2406 } else if (evsel->tp_format) { in trace__event_handler()
[all …]
Dbuiltin-kmem.c756 tep_print_event(evsel->tp_format->tep, in parse_gfp_flags()
1984 kmem_page_size = tep_get_page_size(evsel->tp_format->tep); in cmd_kmem()
Dbuiltin-script.c1851 event_format__fprintf(evsel->tp_format, sample->cpu, in process_event()
/tools/perf/util/scripting-engines/
Dtrace-event-perl.c343 struct tep_event *event = evsel->tp_format; in perl_process_tracepoint()
375 scripting_context->pevent = evsel->tp_format->tep; in perl_process_tracepoint()
Dtrace-event-python.c796 struct tep_event *event = evsel->tp_format; in python_process_tracepoint()
842 scripting_context->pevent = evsel->tp_format->tep; in python_process_tracepoint()