Searched refs:tp_format (Results 1 – 13 of 13) sorted by relevance
/tools/perf/util/ |
D | trace-event.c | 75 tp_format(const char *sys, const char *name) in tp_format() function 110 return tp_format(sys, name); in trace_event__tp_format()
|
D | python.c | 400 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()
|
D | evsel_fprintf.c | 85 field = evsel->tp_format->format.fields; in perf_evsel__fprintf()
|
D | data-convert-bt.c | 420 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()
|
D | evsel.h | 55 struct tep_event *tp_format; member
|
D | evsel.c | 354 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()
|
D | sort.c | 714 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()
|
D | header.c | 3491 if (evsel->tp_format) in perf_evsel__prepare_tracepoint_event() 3512 evsel->tp_format = event; in perf_evsel__prepare_tracepoint_event()
|
/tools/perf/ |
D | builtin-trace.c | 992 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 …]
|
D | builtin-kmem.c | 756 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()
|
D | builtin-script.c | 1851 event_format__fprintf(evsel->tp_format, sample->cpu, in process_event()
|
/tools/perf/util/scripting-engines/ |
D | trace-event-perl.c | 343 struct tep_event *event = evsel->tp_format; in perl_process_tracepoint() 375 scripting_context->pevent = evsel->tp_format->tep; in perl_process_tracepoint()
|
D | trace-event-python.c | 796 struct tep_event *event = evsel->tp_format; in python_process_tracepoint() 842 scripting_context->pevent = evsel->tp_format->tep; in python_process_tracepoint()
|