Searched refs:entry_handler (Results 1 – 6 of 6) sorted by relevance
/Linux-v5.15/samples/kprobes/ |
D | kretprobe_example.c | 40 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function 51 NOKPROBE_SYMBOL(entry_handler); 75 .entry_handler = entry_handler,
|
/Linux-v5.15/arch/arm64/kernel/ |
D | entry.S | 546 .macro entry_handler el:req, ht:req, regsize:req, label:req macro 562 entry_handler 1, t, 64, sync 563 entry_handler 1, t, 64, irq 564 entry_handler 1, t, 64, fiq 565 entry_handler 1, t, 64, error 567 entry_handler 1, h, 64, sync 568 entry_handler 1, h, 64, irq 569 entry_handler 1, h, 64, fiq 570 entry_handler 1, h, 64, error 572 entry_handler 0, t, 64, sync [all …]
|
/Linux-v5.15/kernel/ |
D | test_kprobes.c | 159 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function 192 .entry_handler = entry_handler, 235 .entry_handler = entry_handler,
|
D | kprobes.c | 1936 if (rp->entry_handler && rp->entry_handler(ri, regs)) { in NOKPROBE_SYMBOL()
|
/Linux-v5.15/include/linux/ |
D | kprobes.h | 149 kretprobe_handler_t entry_handler; member
|
/Linux-v5.15/Documentation/trace/ |
D | kprobes.rst | 147 on function entry. This handler is specified by setting the entry_handler 149 function entry is hit, the user-defined entry_handler, if any, is invoked. 150 If the entry_handler returns 0 (success) then a corresponding return handler 151 is guaranteed to be called upon function return. If the entry_handler 166 the user entry_handler invocation is also skipped.
|