perf symbols: Look for vmlinux in more places
[deliverable/linux.git] / tools / perf / util / data_map.h
CommitLineData
016e92fb
FW
1#ifndef __PERF_DATAMAP_H
2#define __PERF_DATAMAP_H
3
4#include "event.h"
5#include "header.h"
6
7typedef int (*event_type_handler_t)(event_t *, unsigned long, unsigned long);
8
9struct perf_file_handler {
10 event_type_handler_t process_sample_event;
11 event_type_handler_t process_mmap_event;
12 event_type_handler_t process_comm_event;
13 event_type_handler_t process_fork_event;
14 event_type_handler_t process_exit_event;
15 event_type_handler_t process_lost_event;
16 event_type_handler_t process_read_event;
17 event_type_handler_t process_throttle_event;
18 event_type_handler_t process_unthrottle_event;
19 int (*sample_type_check)(u64 sample_type);
20 unsigned long total_unknown;
21};
22
23void register_perf_file_handler(struct perf_file_handler *handler);
24int mmap_dispatch_perf_file(struct perf_header **pheader,
25 const char *input_name,
cc612d81
ACM
26 const char *vmlinux_name,
27 bool try_vmlinux_path,
016e92fb
FW
28 int force,
29 int full_paths,
30 int *cwdlen,
31 char **cwd);
84fe8488 32int perf_header__read_build_ids(int input, off_t offset, off_t file_size);
016e92fb
FW
33
34#endif
This page took 0.033035 seconds and 5 git commands to generate.