Searched refs:funcs (Results 1 – 12 of 12) sorted by relevance
/kernel/ |
D | tracepoint.c | 117 static void debug_print_probes(struct tracepoint_func *funcs) in debug_print_probes() argument 121 if (!tracepoint_debug || !funcs) in debug_print_probes() 124 for (i = 0; funcs[i].func; i++) in debug_print_probes() 125 printk(KERN_DEBUG "Probe %d : %p\n", i, funcs[i].func); in debug_print_probes() 129 func_add(struct tracepoint_func **funcs, struct tracepoint_func *tp_func, in func_add() argument 139 debug_print_probes(*funcs); in func_add() 140 old = *funcs; in func_add() 171 *funcs = new; in func_add() 172 debug_print_probes(*funcs); in func_add() 176 static void *func_remove(struct tracepoint_func **funcs, in func_remove() argument [all …]
|
/kernel/trace/ |
D | trace_output.c | 726 if (WARN_ON(!event->funcs)) in register_trace_event() 761 if (event->funcs->trace == NULL) in register_trace_event() 762 event->funcs->trace = trace_nop_print; in register_trace_event() 763 if (event->funcs->raw == NULL) in register_trace_event() 764 event->funcs->raw = trace_nop_print; in register_trace_event() 765 if (event->funcs->hex == NULL) in register_trace_event() 766 event->funcs->hex = trace_nop_print; in register_trace_event() 767 if (event->funcs->binary == NULL) in register_trace_event() 768 event->funcs->binary = trace_nop_print; in register_trace_event() 890 .funcs = &trace_fn_funcs, [all …]
|
D | trace_functions_graph.c | 1018 ret = event->funcs->trace(iter, sym_flags, event); in print_graph_comment() 1273 .funcs = &graph_functions, 1278 .funcs = &graph_functions
|
D | trace_branch.c | 170 .funcs = &trace_branch_funcs,
|
D | ftrace.c | 5679 struct list_head funcs; member 5749 list_for_each_entry_safe(mod_func, n, &mod_map->funcs, list) { in ftrace_free_mod_map() 5934 list_add_rcu(&mod_func->list, &mod_map->funcs); in save_ftrace_mod_rec() 5952 INIT_LIST_HEAD_RCU(&mod_map->funcs); in allocate_ftrace_mod_map() 5967 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) { in ftrace_func_address_lookup() 6026 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) { in ftrace_mod_get_kallsym()
|
D | trace_kprobe.c | 1563 call->event.funcs = &kretprobe_funcs; in init_trace_event_call() 1566 call->event.funcs = &kprobe_funcs; in init_trace_event_call()
|
D | trace.c | 2538 if (!event_call || !event_call->event.funcs || in output_printk() 2539 !event_call->event.funcs->trace) in output_printk() 2547 event_call->event.funcs->trace(iter, 0, event); in output_printk() 3746 return event->funcs->trace(iter, sym_flags, event); in print_trace_fmt() 3771 return event->funcs->raw(iter, 0, event); in print_raw_fmt() 3798 enum print_line_t ret = event->funcs->hex(iter, 0, event); in print_hex_fmt() 3826 return event ? event->funcs->binary(iter, 0, event) : in print_bin_fmt()
|
D | trace_uprobe.c | 1550 call->event.funcs = &uprobe_funcs; in init_trace_event_call()
|
D | blktrace.c | 1562 .funcs = &trace_blk_event_funcs,
|
D | trace_events.c | 2065 if (call->event.funcs) in event_remove()
|
D | trace_events_hist.c | 1131 probe_func_ptr = rcu_dereference_sched((tp)->funcs); in trace_synth() 1178 call->event.funcs = &synth_event_funcs; in register_synth_event()
|
/kernel/livepatch/ |
D | core.c | 830 if (!obj->funcs) in klp_init_patch_early()
|