Lines Matching defs:tool
28 #include "util/tool.h"
35 struct perf_tool tool;
121 static void output_sample_callchain_entry(const struct perf_tool *tool,
124 struct convert_json *c = container_of(tool, struct convert_json, tool);
149 static int process_sample_event(const struct perf_tool *tool,
155 struct convert_json *c = container_of(tool, struct convert_json, tool);
223 output_sample_callchain_entry(tool, ip, ok ? &tal : NULL);
227 output_sample_callchain_entry(tool, sample->ip, &al);
329 perf_tool__init(&c.tool, /*ordered_events=*/true);
330 c.tool.sample = process_sample_event;
331 c.tool.mmap = perf_event__process_mmap;
332 c.tool.mmap2 = perf_event__process_mmap2;
333 c.tool.comm = perf_event__process_comm;
334 c.tool.namespaces = perf_event__process_namespaces;
335 c.tool.cgroup = perf_event__process_cgroup;
336 c.tool.exit = perf_event__process_exit;
337 c.tool.fork = perf_event__process_fork;
338 c.tool.lost = perf_event__process_lost;
340 c.tool.tracing_data = perf_event__process_tracing_data;
342 c.tool.build_id = perf_event__process_build_id;
343 c.tool.id_index = perf_event__process_id_index;
344 c.tool.auxtrace_info = perf_event__process_auxtrace_info;
345 c.tool.auxtrace = perf_event__process_auxtrace;
346 c.tool.event_update = perf_event__process_event_update;
347 c.tool.ordering_requires_timestamps = true;
374 session = perf_session__new(&data, &c.tool);