Lines Matching refs:tep_event
106 struct tep_event *event, struct tep_print_arg *arg);
806 static struct tep_event *alloc_event(void) in alloc_event()
808 return calloc(1, sizeof(struct tep_event)); in alloc_event()
811 static int add_event(struct tep_handle *tep, struct tep_event *event) in add_event()
814 struct tep_event **events = realloc(tep->events, sizeof(event) * in add_event()
1420 static int event_read_fields(struct tep_event *event, struct tep_format_field **fields) in event_read_fields()
1719 static int event_read_format(struct tep_event *event) in event_read_format()
1752 process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
1756 process_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_arg()
1768 process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok);
1775 process_field_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_field_arg()
1789 process_cond(struct tep_event *event, struct tep_print_arg *top, char **tok) in process_cond()
1845 process_array(struct tep_event *event, struct tep_print_arg *top, char **tok) in process_array()
1947 process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_op()
2145 process_entry(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_entry()
2184 static int alloc_and_process_delim(struct tep_event *event, char *next_token, in alloc_and_process_delim()
2519 process_fields(struct tep_event *event, struct tep_print_flag_sym **list, char **tok) in process_fields()
2600 process_flags(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_flags()
2653 process_symbols(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_symbols()
2692 process_hex_common(struct tep_event *event, struct tep_print_arg *arg, in process_hex_common()
2715 process_hex(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_hex()
2721 process_hex_str(struct tep_event *event, struct tep_print_arg *arg, in process_hex_str()
2728 process_int_array(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_int_array()
2756 process_dynamic_array(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_dynamic_array()
2820 process_dynamic_array_len(struct tep_event *event, struct tep_print_arg *arg, in process_dynamic_array_len()
2857 process_paren(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_paren()
2920 process_str(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_str()
2949 process_bitmask(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_bitmask()
3010 process_func_handler(struct tep_event *event, struct tep_function_handler *func, in process_func_handler()
3068 process_builtin_expect(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_builtin_expect()
3099 process_function(struct tep_event *event, struct tep_print_arg *arg, in process_function()
3159 process_arg_token(struct tep_event *event, struct tep_print_arg *arg, in process_arg_token()
3244 static int event_read_print_args(struct tep_event *event, struct tep_print_arg **list) in event_read_print_args()
3302 static int event_read_print(struct tep_event *event) in event_read_print()
3368 tep_find_common_field(struct tep_event *event, const char *name) in tep_find_common_field()
3390 tep_find_field(struct tep_event *event, const char *name) in tep_find_field()
3413 tep_find_any_field(struct tep_event *event, const char *name) in tep_find_any_field()
3485 struct tep_event *event; in get_common_info()
3572 struct tep_event *tep_find_event(struct tep_handle *tep, int id) in tep_find_event()
3574 struct tep_event **eventptr; in tep_find_event()
3575 struct tep_event key; in tep_find_event()
3576 struct tep_event *pkey = &key; in tep_find_event()
3604 struct tep_event *
3608 struct tep_event *event = NULL; in tep_find_event_by_name()
3633 eval_num_arg(void *data, int size, struct tep_event *event, struct tep_print_arg *arg) in eval_num_arg()
3973 struct tep_event *event, const char *format, in print_str_arg()
4228 struct tep_event *event, struct tep_print_arg *arg) in process_defined_func()
4323 static struct tep_print_arg *make_bprint_args(char *fmt, void *data, int size, struct tep_event *ev… in make_bprint_args()
4513 struct tep_event *event) in get_bprint_format()
4548 void *data, int size, struct tep_event *event, in print_mac_arg()
4755 void *data, int size, struct tep_event *event, in print_ipv4_arg()
4797 void *data, int size, struct tep_event *event, in print_ipv6_arg()
4847 void *data, int size, struct tep_event *event, in print_ipsa_arg()
4934 void *data, int size, struct tep_event *event, in print_ip_arg()
4964 void *data, int size, struct tep_event *event, in print_uuid_arg()
5032 void *data, int size, struct tep_event *event, in print_raw_buff_arg()
5163 int size __maybe_unused, struct tep_event *event) in tep_print_fields()
5176 void *data, int size, struct tep_event *event, in print_function()
5200 struct tep_event *event, struct tep_print_arg *arg) in print_arg_pointer()
5251 struct tep_event *event, struct tep_print_arg *arg) in print_arg_number()
5298 struct tep_event *event, struct tep_print_arg *arg) in print_arg_string()
5450 struct tep_event *event, in parse_arg_format()
5654 parse_args(struct tep_event *event, const char *format, struct tep_print_arg *arg) in parse_args()
5682 void *data, int size, struct tep_event *event) in print_event_cache()
5714 static void pretty_print(struct trace_seq *s, void *data, int size, struct tep_event *event) in pretty_print()
5991 struct tep_event *event, struct tep_record *record) in print_event_info()
6018 struct tep_event *
6041 char *format, struct tep_event *event, in print_event_time()
6080 struct tep_record *record, struct tep_event *event, in print_string()
6105 struct tep_record *record, struct tep_event *event, in print_int()
6187 struct tep_event *event; in tep_print_event()
6228 struct tep_event * const * ea = a; in events_id_cmp()
6229 struct tep_event * const * eb = b; in events_id_cmp()
6242 struct tep_event * const * ea = a; in events_name_cmp()
6243 struct tep_event * const * eb = b; in events_name_cmp()
6259 struct tep_event * const * ea = a; in events_system_cmp()
6260 struct tep_event * const * eb = b; in events_system_cmp()
6274 static struct tep_event **list_events_copy(struct tep_handle *tep) in list_events_copy()
6276 struct tep_event **events; in list_events_copy()
6290 static void list_events_sort(struct tep_event **events, int nr_events, in list_events_sort()
6323 struct tep_event **tep_list_events(struct tep_handle *tep, in tep_list_events()
6326 struct tep_event **events; in tep_list_events()
6365 struct tep_event **tep_list_events_copy(struct tep_handle *tep, in tep_list_events_copy()
6368 struct tep_event **events; in tep_list_events_copy()
6424 struct tep_format_field **tep_event_common_fields(struct tep_event *event) in tep_event_common_fields()
6438 struct tep_format_field **tep_event_fields(struct tep_event *event) in tep_event_fields()
6680 static int event_matches(struct tep_event *event, in event_matches()
6703 static int find_event_handle(struct tep_handle *tep, struct tep_event *event) in find_event_handle()
6744 static enum tep_errno parse_format(struct tep_event **eventp, in parse_format()
6748 struct tep_event *event; in parse_format()
6857 struct tep_event **eventp, in __parse_event()
6862 struct tep_event *event = *eventp; in __parse_event()
6899 struct tep_event **eventp, in tep_parse_format()
6923 struct tep_event *event = NULL; in tep_parse_event()
6960 void *tep_get_field_raw(struct trace_seq *s, struct tep_event *event, in tep_get_field_raw()
7007 int tep_get_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_field_val()
7032 int tep_get_common_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_common_field_val()
7057 int tep_get_any_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_any_field_val()
7084 struct tep_event *event, const char *name, in tep_print_num_field()
7117 struct tep_event *event, const char *name, in tep_print_func_field()
7277 static struct tep_event *search_event(struct tep_handle *tep, int id, in search_event()
7281 struct tep_event *event; in search_event()
7327 struct tep_event *event; in tep_register_event_handler()
7411 struct tep_event *event; in tep_unregister_event_handler()
7498 __hidden void free_tep_event(struct tep_event *event) in free_tep_event()