Home
last modified time | relevance | path

Searched refs:entry_handler (Results 1 – 12 of 12) sorted by relevance

/linux/samples/kprobes/
H A Dkretprobe_example.c38 /* Here we use the entry_handler to timestamp function entry */
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/arch/arm64/kernel/
H A Dentry.S570 .macro entry_handler el:req, ht:req, regsize:req, label:req macro
586 entry_handler 1, t, 64, sync
587 entry_handler 1, t, 64, irq
588 entry_handler 1, t, 64, fiq
589 entry_handler 1, t, 64, error
591 entry_handler 1, h, 64, sync
592 entry_handler 1, h, 64, irq
593 entry_handler 1, h, 64, fiq
594 entry_handler 1, h, 64, error
596 entry_handler
[all...]
/linux/lib/tests/
H A Dtest_fprobe.c79 .entry_handler = fp_entry_handler, in test_fprobe_entry()
106 .entry_handler = fp_entry_handler, in test_fprobe()
132 .entry_handler = fp_entry_handler, in test_fprobe_syms()
158 .entry_handler = fp_entry_handler, in test_fprobe_data()
174 .entry_handler = fp_entry_handler, in test_fprobe_skip()
H A Dtest_kprobes.c175 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function
195 .entry_handler = entry_handler,
220 .entry_handler = entry_handler,
/linux/Documentation/trace/
H A Dfprobe.rst27 Typically, `fprobe` data structure is initialized with the `entry_handler`
33 .entry_handler = my_entry_callback,
127 allocated and passed to both `entry_handler` and `exit_handler`.
178 which is traced by other ftrace users is called from the entry_handler.
H A Dkprobes.rst146 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/include/linux/
H A Dfprobe.h57 * @entry_handler: The callback function for function entry.
66 fprobe_entry_cb entry_handler; member
H A Dkprobes.h149 kretprobe_handler_t entry_handler; member
/linux/samples/fprobe/
H A Dfprobe_example.c96 sample_probe.entry_handler = sample_entry_handler; in fprobe_init()
/linux/kernel/trace/
H A Dtrace_fprobe.c590 tf->fp.entry_handler = fentry_dispatcher; in alloc_trace_fprobe()
1366 tf->fp.entry_handler = trace_fprobe_entry_handler; in trace_fprobe_create_internal()
H A Dtrace_kprobe.c1048 tk->rp.entry_handler = trace_kprobe_entry_handler; in trace_kprobe_create_internal()
H A Dbpf_trace.c2995 link->fp.entry_handler = kprobe_multi_link_handler; in bpf_kprobe_multi_link_attach()