Lines Matching refs:tep
119 static void show_function(struct trace_seq *s, struct tep_handle *tep, in show_function() argument
126 offset = tep_find_function_address(tep, function); in show_function()
134 struct tep_handle *tep = event->tep; in function_handler() local
144 func = tep_find_function(tep, function); in function_handler()
149 parent = tep_find_function(tep, pfunction); in function_handler()
157 show_function(s, tep, func, function); in function_handler()
164 show_function(s, tep, parent, pfunction); in function_handler()
190 long_size = tep_get_long_size(event->tep); in trace_stack_handler()
194 addr = tep_read_number(event->tep, data, long_size); in trace_stack_handler()
200 func = tep_find_function(event->tep, addr); in trace_stack_handler()
230 long_size = tep_get_long_size(event->tep); in trace_raw_data_handler()
248 int TEP_PLUGIN_LOADER(struct tep_handle *tep) in TEP_PLUGIN_LOADER() argument
250 tep_register_event_handler(tep, -1, "ftrace", "function", in TEP_PLUGIN_LOADER()
253 tep_register_event_handler(tep, -1, "ftrace", "kernel_stack", in TEP_PLUGIN_LOADER()
256 tep_register_event_handler(tep, -1, "ftrace", "raw_data", in TEP_PLUGIN_LOADER()
264 void TEP_PLUGIN_UNLOADER(struct tep_handle *tep) in TEP_PLUGIN_UNLOADER() argument
268 tep_unregister_event_handler(tep, -1, "ftrace", "function", in TEP_PLUGIN_UNLOADER()