Lines Matching refs:tool

91 	struct perf_tool	tool;  member
795 static int process_sample_event(const struct perf_tool *tool, in process_sample_event() argument
801 struct convert *c = container_of(tool, struct convert, tool); in process_sample_event()
874 static int process_##_name##_event(const struct perf_tool *tool, \
879 struct convert *c = container_of(tool, struct convert, tool);\
906 return perf_event__process_##_name(tool, _event, sample, machine);\
1614 perf_tool__init(&c.tool, /*ordered_events=*/true); in bt_convert__perf2ctf()
1615 c.tool.sample = process_sample_event; in bt_convert__perf2ctf()
1616 c.tool.mmap = perf_event__process_mmap; in bt_convert__perf2ctf()
1617 c.tool.mmap2 = perf_event__process_mmap2; in bt_convert__perf2ctf()
1618 c.tool.comm = perf_event__process_comm; in bt_convert__perf2ctf()
1619 c.tool.exit = perf_event__process_exit; in bt_convert__perf2ctf()
1620 c.tool.fork = perf_event__process_fork; in bt_convert__perf2ctf()
1621 c.tool.lost = perf_event__process_lost; in bt_convert__perf2ctf()
1622 c.tool.tracing_data = perf_event__process_tracing_data; in bt_convert__perf2ctf()
1623 c.tool.build_id = perf_event__process_build_id; in bt_convert__perf2ctf()
1624 c.tool.namespaces = perf_event__process_namespaces; in bt_convert__perf2ctf()
1625 c.tool.ordering_requires_timestamps = true; in bt_convert__perf2ctf()
1628 c.tool.comm = process_comm_event; in bt_convert__perf2ctf()
1629 c.tool.exit = process_exit_event; in bt_convert__perf2ctf()
1630 c.tool.fork = process_fork_event; in bt_convert__perf2ctf()
1631 c.tool.mmap = process_mmap_event; in bt_convert__perf2ctf()
1632 c.tool.mmap2 = process_mmap2_event; in bt_convert__perf2ctf()
1641 session = perf_session__new(&data, &c.tool); in bt_convert__perf2ctf()