Searched refs:entry_handler (Results 1 – 11 of 11) sorted by relevance
| /linux/samples/kprobes/ |
| H A D | kretprobe_example.c | 39 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function 50 NOKPROBE_SYMBOL(entry_handler); 74 .entry_handler = entry_handler,
|
| /linux/lib/tests/ |
| H A D | test_fprobe.c | 80 .entry_handler = fp_entry_handler, in test_fprobe_entry() 107 .entry_handler = fp_entry_handler, in test_fprobe() 133 .entry_handler = fp_entry_handler, in test_fprobe_syms() 159 .entry_handler = fp_entry_handler, in test_fprobe_data() 175 .entry_handler = fp_entry_handler, in test_fprobe_skip() 259 .entry_handler = fprobe_entry_multi_handler, in test_fprobe_multi() 263 .entry_handler = entry_only_handler, in test_fprobe_multi()
|
| H A D | test_kprobes.c | 177 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function 197 .entry_handler = entry_handler, 222 .entry_handler = entry_handler,
|
| /linux/include/linux/ |
| H A D | fprobe.h | 67 fprobe_entry_cb entry_handler; member
|
| H A D | kprobes.h | 149 kretprobe_handler_t entry_handler; member
|
| /linux/samples/fprobe/ |
| H A D | fprobe_example.c | 96 sample_probe.entry_handler = sample_entry_handler; in fprobe_init()
|
| /linux/kernel/trace/ |
| H A D | fprobe.c | 225 if (!fp->entry_handler) in __fprobe_handler() 228 return fp->entry_handler(fp, ip, parent_ip, fregs, data); in __fprobe_handler()
|
| H A D | trace_fprobe.c | 593 tf->fp.entry_handler = fentry_dispatcher; in alloc_trace_fprobe() 1369 tf->fp.entry_handler = trace_fprobe_entry_handler; in trace_fprobe_create_internal()
|
| H A D | bpf_trace.c | 2843 link->fp.entry_handler = kprobe_multi_link_handler; in bpf_kprobe_multi_link_attach()
|
| /linux/Documentation/trace/ |
| H A D | kprobes.rst | 146 on function entry. This handler is specified by setting the entry_handler 148 function entry is hit, the user-defined entry_handler, if any, is invoked. 149 If the entry_handler returns 0 (success) then a corresponding return handler 150 is guaranteed to be called upon function return. If the entry_handler 165 the user entry_handler invocation is also skipped.
|
| /linux/kernel/ |
| H A D | kprobes.c | 2160 if (rp->entry_handler && rp->entry_handler(ri, regs)) { in NOKPROBE_SYMBOL() 2191 if (rp->entry_handler && rp->entry_handler(ri, regs)) in pre_handler_kretprobe()
|