Lines Matching defs:tep_handle
20 struct tep_handle { struct
21 int ref_count;
23 int header_page_ts_offset;
24 int header_page_ts_size;
25 int header_page_size_offset;
26 int header_page_size_size;
27 int header_page_data_offset;
28 int header_page_data_size;
29 int header_page_overwrite;
31 enum tep_endian file_bigendian;
32 enum tep_endian host_bigendian;
34 int old_format;
36 int cpus;
37 int long_size;
38 int page_size;
40 struct tep_cmdline *cmdlines;
41 struct cmdline_list *cmdlist;
42 int cmdline_count;
44 struct func_map *func_map;
45 struct func_resolver *func_resolver;
46 struct func_list *funclist;
47 unsigned int func_count;
49 struct printk_map *printk_map;
50 struct printk_list *printklist;
51 unsigned int printk_count;
53 struct tep_event **events;
54 int nr_events;
55 struct tep_event **sort_events;
56 enum tep_event_sort_type last_type;
58 int type_offset;
59 int type_size;
61 int pid_offset;
62 int pid_size;
64 int pc_offset;
65 int pc_size;
67 int flags_offset;
68 int flags_size;
70 int ld_offset;
71 int ld_size;
73 int test_filters;
75 int flags;
77 struct tep_format_field *bprint_ip_field;
78 struct tep_format_field *bprint_fmt_field;
79 struct tep_format_field *bprint_buf_field;
81 struct event_handler *handlers;
82 struct tep_function_handler *func_handlers;
85 struct tep_event *last_event;
109 void free_tep_plugin_paths(struct tep_handle *tep); argument