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()
1428 static int event_read_fields(struct tep_event *event, struct tep_format_field **fields) in event_read_fields()
1729 static int event_read_format(struct tep_event *event) in event_read_format()
1762 process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
1766 process_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_arg()
1778 process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok);
1785 process_field_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_field_arg()
1799 process_cond(struct tep_event *event, struct tep_print_arg *top, char **tok) in process_cond()
1855 process_array(struct tep_event *event, struct tep_print_arg *top, char **tok) in process_array()
1957 process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_op()
2155 process_entry(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_entry()
2194 static int alloc_and_process_delim(struct tep_event *event, char *next_token, in alloc_and_process_delim()
2529 process_fields(struct tep_event *event, struct tep_print_flag_sym **list, char **tok) in process_fields()
2610 process_flags(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_flags()
2663 process_symbols(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_symbols()
2702 process_hex_common(struct tep_event *event, struct tep_print_arg *arg, in process_hex_common()
2725 process_hex(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_hex()
2731 process_hex_str(struct tep_event *event, struct tep_print_arg *arg, in process_hex_str()
2738 process_int_array(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_int_array()
2766 process_dynamic_array(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_dynamic_array()
2830 process_dynamic_array_len(struct tep_event *event, struct tep_print_arg *arg, in process_dynamic_array_len()
2867 process_paren(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_paren()
2930 process_str(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_str()
2959 process_bitmask(struct tep_event *event __maybe_unused, struct tep_print_arg *arg, in process_bitmask()
3020 process_func_handler(struct tep_event *event, struct tep_function_handler *func, in process_func_handler()
3078 process_builtin_expect(struct tep_event *event, struct tep_print_arg *arg, char **tok) in process_builtin_expect()
3109 process_function(struct tep_event *event, struct tep_print_arg *arg, in process_function()
3173 process_arg_token(struct tep_event *event, struct tep_print_arg *arg, in process_arg_token()
3258 static int event_read_print_args(struct tep_event *event, struct tep_print_arg **list) in event_read_print_args()
3316 static int event_read_print(struct tep_event *event) in event_read_print()
3382 tep_find_common_field(struct tep_event *event, const char *name) in tep_find_common_field()
3404 tep_find_field(struct tep_event *event, const char *name) in tep_find_field()
3427 tep_find_any_field(struct tep_event *event, const char *name) in tep_find_any_field()
3499 struct tep_event *event; in get_common_info()
3586 struct tep_event *tep_find_event(struct tep_handle *tep, int id) in tep_find_event()
3588 struct tep_event **eventptr; in tep_find_event()
3589 struct tep_event key; in tep_find_event()
3590 struct tep_event *pkey = &key; in tep_find_event()
3618 struct tep_event *
3622 struct tep_event *event = NULL; in tep_find_event_by_name()
3647 eval_num_arg(void *data, int size, struct tep_event *event, struct tep_print_arg *arg) in eval_num_arg()
3987 struct tep_event *event, const char *format, in print_str_arg()
4245 struct tep_event *event, struct tep_print_arg *arg) in process_defined_func()
4340 static struct tep_print_arg *make_bprint_args(char *fmt, void *data, int size, struct tep_event *ev… in make_bprint_args()
4530 struct tep_event *event) in get_bprint_format()
4565 void *data, int size, struct tep_event *event, in print_mac_arg()
4772 void *data, int size, struct tep_event *event, in print_ipv4_arg()
4814 void *data, int size, struct tep_event *event, in print_ipv6_arg()
4864 void *data, int size, struct tep_event *event, in print_ipsa_arg()
4951 void *data, int size, struct tep_event *event, in print_ip_arg()
4981 void *data, int size, struct tep_event *event, in print_uuid_arg()
5049 void *data, int size, struct tep_event *event, in print_raw_buff_arg()
5182 int size __maybe_unused, struct tep_event *event) in tep_print_fields()
5195 void *data, int size, struct tep_event *event, in print_function()
5219 struct tep_event *event, struct tep_print_arg *arg) in print_arg_pointer()
5270 struct tep_event *event, struct tep_print_arg *arg) in print_arg_number()
5317 struct tep_event *event, struct tep_print_arg *arg) in print_arg_string()
5469 struct tep_event *event, in parse_arg_format()
5673 parse_args(struct tep_event *event, const char *format, struct tep_print_arg *arg) in parse_args()
5701 void *data, int size, struct tep_event *event) in print_event_cache()
5733 static void pretty_print(struct trace_seq *s, void *data, int size, struct tep_event *event) in pretty_print()
6010 struct tep_event *event, struct tep_record *record) in print_event_info()
6037 struct tep_event *
6060 char *format, struct tep_event *event, in print_event_time()
6099 struct tep_record *record, struct tep_event *event, in print_string()
6124 struct tep_record *record, struct tep_event *event, in print_int()
6206 struct tep_event *event; in tep_print_event()
6247 struct tep_event * const * ea = a; in events_id_cmp()
6248 struct tep_event * const * eb = b; in events_id_cmp()
6261 struct tep_event * const * ea = a; in events_name_cmp()
6262 struct tep_event * const * eb = b; in events_name_cmp()
6278 struct tep_event * const * ea = a; in events_system_cmp()
6279 struct tep_event * const * eb = b; in events_system_cmp()
6293 static struct tep_event **list_events_copy(struct tep_handle *tep) in list_events_copy()
6295 struct tep_event **events; in list_events_copy()
6309 static void list_events_sort(struct tep_event **events, int nr_events, in list_events_sort()
6342 struct tep_event **tep_list_events(struct tep_handle *tep, in tep_list_events()
6345 struct tep_event **events; in tep_list_events()
6384 struct tep_event **tep_list_events_copy(struct tep_handle *tep, in tep_list_events_copy()
6387 struct tep_event **events; in tep_list_events_copy()
6443 struct tep_format_field **tep_event_common_fields(struct tep_event *event) in tep_event_common_fields()
6457 struct tep_format_field **tep_event_fields(struct tep_event *event) in tep_event_fields()
6699 static int event_matches(struct tep_event *event, in event_matches()
6722 static int find_event_handle(struct tep_handle *tep, struct tep_event *event) in find_event_handle()
6763 static enum tep_errno parse_format(struct tep_event **eventp, in parse_format()
6767 struct tep_event *event; in parse_format()
6876 struct tep_event **eventp, in __parse_event()
6881 struct tep_event *event = *eventp; in __parse_event()
6918 struct tep_event **eventp, in tep_parse_format()
6942 struct tep_event *event = NULL; in tep_parse_event()
6979 void *tep_get_field_raw(struct trace_seq *s, struct tep_event *event, in tep_get_field_raw()
7028 int tep_get_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_field_val()
7053 int tep_get_common_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_common_field_val()
7078 int tep_get_any_field_val(struct trace_seq *s, struct tep_event *event, in tep_get_any_field_val()
7105 struct tep_event *event, const char *name, in tep_print_num_field()
7138 struct tep_event *event, const char *name, in tep_print_func_field()
7298 static struct tep_event *search_event(struct tep_handle *tep, int id, in search_event()
7302 struct tep_event *event; in search_event()
7348 struct tep_event *event; in tep_register_event_handler()
7432 struct tep_event *event; in tep_unregister_event_handler()
7519 __hidden void free_tep_event(struct tep_event *event) in free_tep_event()