Searched refs:tp_format (Results 1 – 16 of 16) sorted by relevance
| /tools/perf/util/ |
| 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()
|
| D | trace-event-scripting.c | 34 if (evsel->tp_format) in scripting_context__update() 35 c->pevent = evsel->tp_format->tep; in scripting_context__update()
|
| D | python.c | 372 if (!evsel->tp_format) { in get_tracepoint_field() 373 struct tep_event *tp_format; in get_tracepoint_field() local 375 tp_format = trace_event__tp_format_id(evsel->core.attr.config); in get_tracepoint_field() 376 if (IS_ERR_OR_NULL(tp_format)) in get_tracepoint_field() 379 evsel->tp_format = tp_format; in get_tracepoint_field() 382 field = tep_find_any_field(evsel->tp_format, str); in get_tracepoint_field() 1233 struct tep_event *tp_format; in pyrf__tracepoint() 1242 tp_format = trace_event__tp_format(sys, name); in pyrf__tracepoint() 1243 if (IS_ERR(tp_format)) in pyrf__tracepoint() 1246 return _PyLong_FromLong(tp_format->id); in pyrf__tracepoint()
|
| D | evsel_fprintf.c | 90 field = evsel->tp_format->format.fields; in evsel__fprintf()
|
| 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()
|
| D | evsel.c | 418 evsel->tp_format = orig->tp_format; in evsel__clone() 479 evsel->tp_format = trace_event__tp_format(sys, name); in evsel__newtp_idx() 480 if (IS_ERR(evsel->tp_format)) { in evsel__newtp_idx() 481 err = PTR_ERR(evsel->tp_format); in evsel__newtp_idx() 484 attr.config = evsel->tp_format->id; in evsel__newtp_idx() 3091 return tep_find_field(evsel->tp_format, name); in evsel__field() 3096 return tep_find_common_field(evsel->tp_format, name); in evsel__common_field()
|
| D | data-convert-json.c | 236 fields = tep_event_fields(evsel->tp_format); in process_sample_event()
|
| D | evsel.h | 78 struct tep_event *tp_format; member
|
| D | sort.c | 951 evsel->tp_format); in get_trace_output() 953 tep_print_event(evsel->tp_format->tep, in get_trace_output() 3193 field = evsel->tp_format->format.fields; in add_evsel_fields() 3232 field = tep_find_any_field(evsel->tp_format, field_name); in add_all_matching_fields() 3314 struct tep_format_field *field = tep_find_any_field(evsel->tp_format, field_name); in add_dynamic_entry()
|
| D | header.c | 4205 if (evsel->tp_format) in evsel__prepare_tracepoint_event() 4226 evsel->tp_format = event; in evsel__prepare_tracepoint_event()
|
| /tools/perf/ |
| D | builtin-trace.c | 392 et->fmt = calloc(evsel->tp_format->format.nr_fields, sizeof(struct syscall_arg_fmt)); in evsel__syscall_arg_fmt() 1451 struct tep_event *tp_format; member 2109 sc->tp_format = trace_event__tp_format("syscalls", tp_name); in trace__read_syscall_info() 2111 if (IS_ERR(sc->tp_format) && sc->fmt && sc->fmt->alias) { in trace__read_syscall_info() 2113 sc->tp_format = trace_event__tp_format("syscalls", tp_name); in trace__read_syscall_info() 2120 if (IS_ERR(sc->tp_format)) { in trace__read_syscall_info() 2122 return PTR_ERR(sc->tp_format); in trace__read_syscall_info() 2129 if (syscall__alloc_arg_fmts(sc, IS_ERR(sc->tp_format) ? in trace__read_syscall_info() 2130 RAW_SYSCALL_ARGS_NUM : sc->tp_format->format.nr_fields - 1)) in trace__read_syscall_info() 2133 sc->args = sc->tp_format->format.fields; in trace__read_syscall_info() [all …]
|
| D | builtin-kmem.c | 775 tep_print_event(evsel->tp_format->tep, in parse_gfp_flags() 2021 kmem_page_size = tep_get_page_size(evsel->tp_format->tep); in cmd_kmem()
|
| D | builtin-kwork.c | 1106 struct tep_print_arg *args = evsel->tp_format->print_fmt.args; in evsel__softirq_name()
|
| D | builtin-script.c | 2291 event_format__fprintf(evsel->tp_format, sample->cpu, in process_event()
|
| /tools/perf/util/scripting-engines/ |
| D | trace-event-perl.c | 347 struct tep_event *event = evsel->tp_format; in perl_process_tracepoint()
|
| D | trace-event-python.c | 949 struct tep_event *event = evsel->tp_format; in python_process_tracepoint()
|