Lines Matching refs:tpoint
48 struct tracepoint *tpoint; member
79 return tf->tpoint != NULL; in trace_fprobe_is_tracepoint()
388 struct tracepoint *tpoint, in alloc_trace_fprobe() argument
409 tf->tpoint = tpoint; in alloc_trace_fprobe()
680 struct tracepoint *tpoint = tf->tpoint; in __regsiter_tracepoint_fprobe() local
681 unsigned long ip = (unsigned long)tpoint->probestub; in __regsiter_tracepoint_fprobe()
689 ret = tracepoint_probe_register_prio_may_exist(tpoint, in __regsiter_tracepoint_fprobe()
690 tpoint->probestub, NULL, 0); in __regsiter_tracepoint_fprobe()
724 if (tf->tpoint == TRACEPOINT_STUB) in __register_trace_fprobe()
741 tracepoint_probe_unregister(tf->tpoint, in __unregister_trace_fprobe()
742 tf->tpoint->probestub, NULL); in __unregister_trace_fprobe()
743 tf->tpoint = NULL; in __unregister_trace_fprobe()
882 struct tracepoint *tpoint; member
890 if (!data->tpoint && !strcmp(data->tp_name, tp->name)) { in __find_tracepoint_module_cb()
891 data->tpoint = tp; in __find_tracepoint_module_cb()
895 data->tpoint = NULL; in __find_tracepoint_module_cb()
906 if (!data->tpoint && !strcmp(data->tp_name, tp->name)) in __find_tracepoint_cb()
907 data->tpoint = tp; in __find_tracepoint_cb()
927 if (!data.tpoint && IS_ENABLED(CONFIG_MODULES)) { in find_tracepoint()
932 return data.tpoint; in find_tracepoint()
954 return data.tpoint; in find_tracepoint_in_module()
961 struct tracepoint *tpoint; in __tracepoint_probe_module_cb() local
970 if (val == MODULE_STATE_COMING && tf->tpoint == TRACEPOINT_STUB) { in __tracepoint_probe_module_cb()
971 tpoint = find_tracepoint_in_module(tp_mod->mod, tf->symbol); in __tracepoint_probe_module_cb()
972 if (tpoint) { in __tracepoint_probe_module_cb()
973 tf->tpoint = tpoint; in __tracepoint_probe_module_cb()
980 tracepoint_probe_unregister(tf->tpoint, in __tracepoint_probe_module_cb()
981 tf->tpoint->probestub, NULL); in __tracepoint_probe_module_cb()
982 tf->tpoint = NULL; in __tracepoint_probe_module_cb()
1077 struct tracepoint *tpoint = NULL; in __trace_fprobe_create() local
1161 tpoint = find_tracepoint(symbol, &tp_mod); in __trace_fprobe_create()
1162 if (tpoint) { in __trace_fprobe_create()
1164 (unsigned long)tpoint->probestub, in __trace_fprobe_create()
1168 tpoint = TRACEPOINT_STUB; in __trace_fprobe_create()
1200 tf = alloc_trace_fprobe(group, event, symbol, tpoint, tp_mod, in __trace_fprobe_create()