Searched refs:probes (Results 1 – 5 of 5) sorted by relevance
/kernel/ |
D | tracepoint.c | 98 struct tracepoint_func probes[]; member 109 struct tp_probes *p = kmalloc(struct_size(p, probes, count), in allocate_probes() 111 return p == NULL ? NULL : p->probes; in allocate_probes() 146 struct tp_probes, probes[0]); in release_probes() 213 int probes = 0; in func_add() local 220 pos = probes++; in func_add() 221 new[probes++] = old[nr_probes]; in func_add() 223 nr_probes = probes; in func_add() 225 pos = probes; in func_add()
|
/kernel/trace/ |
D | trace_probe.h | 237 struct list_head probes; member 304 return list_first_entry_or_null(&tpe->probes, struct trace_probe, list); in trace_probe_primary_from_call() 309 return &tp->event->probes; in trace_probe_probe_list()
|
D | trace_probe.c | 1008 INIT_LIST_HEAD(&tp->event->probes); in trace_probe_init() 1010 list_add(&tp->list, &tp->event->probes); in trace_probe_init()
|
D | trace_uprobe.c | 416 list_for_each_entry(pos, &tpe->probes, list) { in trace_uprobe_has_same_uprobe()
|
D | trace_kprobe.c | 565 list_for_each_entry(pos, &tpe->probes, list) { in trace_kprobe_has_same_kprobe()
|