Searched refs:entry_handler (Results 1 – 6 of 6) sorted by relevance
/linux/samples/kprobes/ |
A 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/arch/arm64/kernel/ |
A D | entry.S | 562 entry_handler 1, t, 64, sync 563 entry_handler 1, t, 64, irq 564 entry_handler 1, t, 64, fiq 567 entry_handler 1, h, 64, sync 568 entry_handler 1, h, 64, irq 569 entry_handler 1, h, 64, fiq 572 entry_handler 0, t, 64, sync 573 entry_handler 0, t, 64, irq 574 entry_handler 0, t, 64, fiq 578 entry_handler 0, t, 32, irq [all …]
|
/linux/lib/ |
A D | test_kprobes.c | 142 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) in entry_handler() function 162 .entry_handler = entry_handler, 187 .entry_handler = entry_handler,
|
/linux/include/linux/ |
A D | kprobes.h | 148 kretprobe_handler_t entry_handler; member
|
/linux/Documentation/trace/ |
A 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.
|
/linux/kernel/ |
A D | kprobes.c | 2016 if (rp->entry_handler && rp->entry_handler(ri, regs)) { in NOKPROBE_SYMBOL()
|
Completed in 14 milliseconds