Home
last modified time | relevance | path

Searched refs:tevent (Results 1 – 16 of 16) sorted by relevance

/openbmc/linux/tools/tracing/rtla/src/
H A Dtrace.c212 struct trace_events *tevent = events; in trace_events_free() local
215 while (tevent) { in trace_events_free()
216 free_event = tevent; in trace_events_free()
218 tevent = tevent->next; in trace_events_free()
234 struct trace_events *tevent; in trace_event_alloc() local
236 tevent = calloc(1, sizeof(*tevent)); in trace_event_alloc()
237 if (!tevent) in trace_event_alloc()
240 tevent->system = strdup(event_string); in trace_event_alloc()
241 if (!tevent->system) { in trace_event_alloc()
242 free(tevent); in trace_event_alloc()
[all …]
H A Dosnoise_top.c347 struct trace_events *tevent; in osnoise_top_parse_args() local
434 tevent = trace_event_alloc(optarg); in osnoise_top_parse_args()
435 if (!tevent) { in osnoise_top_parse_args()
441 tevent->next = params->events; in osnoise_top_parse_args()
442 params->events = tevent; in osnoise_top_parse_args()
H A Dosnoise_hist.c496 struct trace_events *tevent; in osnoise_hist_parse_args() local
589 tevent = trace_event_alloc(optarg); in osnoise_hist_parse_args()
590 if (!tevent) { in osnoise_hist_parse_args()
596 tevent->next = params->events; in osnoise_hist_parse_args()
598 params->events = tevent; in osnoise_hist_parse_args()
H A Dtimerlat_top.c385 struct trace_events *tevent; in timerlat_top_parse_args() local
491 tevent = trace_event_alloc(optarg); in timerlat_top_parse_args()
492 if (!tevent) { in timerlat_top_parse_args()
498 tevent->next = params->events; in timerlat_top_parse_args()
499 params->events = tevent; in timerlat_top_parse_args()
H A Dtimerlat_hist.c586 struct trace_events *tevent; in timerlat_hist_parse_args() local
692 tevent = trace_event_alloc(optarg); in timerlat_hist_parse_args()
693 if (!tevent) { in timerlat_hist_parse_args()
699 tevent->next = params->events; in timerlat_hist_parse_args()
701 params->events = tevent; in timerlat_hist_parse_args()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtevent/
H A Dlibtevent_0.16.1.bb2 HOMEPAGE = "https://tevent.samba.org"
7 RDEPENDS:python3-tevent = "python3"
12 SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \
18 LIC_FILES_CHKSUM = "file://tevent.h;endline=26;md5=47386b7c539bf2706b7ce52dc9341681"
36 S = "${WORKDIR}/tevent-${PV}"
56 PACKAGES += "python3-tevent"
58 RPROVIDES:${PN}-dbg += "python3-tevent-dbg"
60 FILES:python3-tevent = "${PYTHON_SITEPACKAGES_DIR}/*"
62 INSANE_SKIP:${MLPREFIX}python3-tevent = "dev-so"
/openbmc/linux/tools/perf/util/
H A Dtrace-event.c24 static struct trace_event tevent; variable
44 if (trace_event__init(&tevent)) in trace_event__init2()
47 pevent = tevent.pevent; in trace_event__init2()
61 return tep_set_function_resolver(tevent.pevent, func, machine); in trace_event__register_resolver()
77 struct tep_handle *pevent = tevent.pevent; in tp_format()
117 return tep_find_event(tevent.pevent, id); in trace_event__tp_format_id()
H A Dtrace-event-read.c375 ssize_t trace_report(int fd, struct trace_event *tevent, bool __repipe) in trace_report() argument
421 if (trace_event__init(tevent)) { in trace_report()
426 pevent = tevent->pevent; in trace_report()
477 trace_event__cleanup(tevent); in trace_report()
H A Dtrace-event.h58 ssize_t trace_report(int fd, struct trace_event *tevent, bool repipe);
H A Dsession.h37 struct trace_event tevent; member
H A Dheader.c4283 perf_header__process_sections(header, fd, &session->tevent, in perf_session__read_header()
4286 if (evlist__prepare_tracepoint_events(session->evlist, session->tevent.pevent)) in perf_session__read_header()
4493 size_read = trace_report(fd, &session->tevent, in perf_event__process_tracing_data()
4514 evlist__prepare_tracepoint_events(session->evlist, session->tevent.pevent); in perf_event__process_tracing_data()
H A Dsession.c317 trace_event__cleanup(&session->tevent); in perf_session__delete()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtevent/libtevent/
H A D0002-Fix-pyext_PATTERN-for-cross-compilation.patch11 root@qemuarm64:~# find /usr/lib/python3.10/ -name \*tevent\*.so
17 root@qemuarm64:~# find /usr/lib/python3.10/ -name \*tevent\*.so
/openbmc/linux/tools/perf/
H A Dbuiltin-report.c1705 if (session->tevent.pevent && in cmd_report()
1706 tep_set_function_resolver(session->tevent.pevent, in cmd_report()
H A Dbuiltin-kwork.c1415 if (session->tevent.pevent && in perf_kwork__read_events()
1416 tep_set_function_resolver(session->tevent.pevent, in perf_kwork__read_events()
H A Dbuiltin-script.c4288 if (session->tevent.pevent && in cmd_script()
4289 tep_set_function_resolver(session->tevent.pevent, in cmd_script()
4333 err = scripting_ops->generate_script(session->tevent.pevent, in cmd_script()