Lines Matching refs:func
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()
136 if (WARN_ON(!tp_func->func)) in func_add()
143 for (nr_probes = 0; old[nr_probes].func; nr_probes++) { in func_add()
147 if (old[nr_probes].func == tp_func->func && in func_add()
170 new[nr_probes + 1].func = NULL; in func_add()
189 if (tp_func->func) { in func_remove()
190 for (nr_probes = 0; old[nr_probes].func; nr_probes++) { in func_remove()
191 if (old[nr_probes].func == tp_func->func && in func_remove()
213 for (i = 0; old[i].func; i++) in func_remove()
214 if (old[i].func != tp_func->func in func_remove()
217 new[nr_probes - nr_del].func = NULL; in func_remove()
228 struct tracepoint_func *func, int prio) in tracepoint_add_func() argument
241 old = func_add(&tp_funcs, func, prio); in tracepoint_add_func()
267 struct tracepoint_func *func) in tracepoint_remove_func() argument
273 old = func_remove(&tp_funcs, func); in tracepoint_remove_func()
312 tp_func.func = probe; in tracepoint_probe_register_prio()
353 tp_func.func = probe; in tracepoint_probe_unregister()