Searched refs:fault_handler (Results 1 – 16 of 16) sorted by relevance
/Linux-v5.10/drivers/iio/temperature/ |
D | ltc2983.c | 209 int (*fault_handler)(const struct ltc2983_data *st, const u32 result); member 683 thermo->sensor.fault_handler = ltc2983_thermocouple_fault_handler; in ltc2983_thermocouple_new() 810 rtd->sensor.fault_handler = ltc2983_common_fault_handler; in ltc2983_rtd_new() 932 thermistor->sensor.fault_handler = ltc2983_common_fault_handler; in ltc2983_thermistor_new() 1038 diode->sensor.fault_handler = ltc2983_common_fault_handler; in ltc2983_diode_new() 1132 adc->sensor.fault_handler = ltc2983_common_fault_handler; in ltc2983_adc_new() 1180 ret = sensor->fault_handler(st, *val); in ltc2983_chan_read()
|
/Linux-v5.10/arch/arc/kernel/ |
D | kprobes.c | 333 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/samples/kprobes/ |
D | kprobe_example.c | 101 kp.fault_handler = handler_fault; in kprobe_init()
|
/Linux-v5.10/arch/arm/probes/kprobes/ |
D | core.c | 368 if (cur->fault_handler && cur->fault_handler(cur, regs, fsr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/csky/kernel/probes/ |
D | kprobes.c | 311 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/sparc/kernel/ |
D | kprobes.c | 362 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/arm64/kernel/probes/ |
D | kprobes.c | 311 if (cur->fault_handler && cur->fault_handler(cur, regs, fsr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/mips/kernel/ |
D | kprobes.c | 406 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/sh/kernel/ |
D | kprobes.c | 399 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/powerpc/kernel/ |
D | kprobes.c | 518 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/s390/kernel/ |
D | kprobes.c | 462 if (p->fault_handler && p->fault_handler(p, regs, trapnr)) in kprobe_trap_handler()
|
/Linux-v5.10/arch/x86/kernel/kprobes/ |
D | core.c | 967 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/arch/ia64/kernel/ |
D | kprobes.c | 860 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) in kprobe_fault_handler()
|
/Linux-v5.10/include/linux/ |
D | kprobes.h | 88 kprobe_fault_handler_t fault_handler; member
|
/Linux-v5.10/kernel/ |
D | kprobes.c | 1205 if (cur && cur->fault_handler) { in aggr_fault_handler() 1206 if (cur->fault_handler(cur, regs, trapnr)) in aggr_fault_handler() 1410 ap->fault_handler = aggr_fault_handler; in init_aggr_kprobe() 2122 rp->kp.fault_handler = NULL; in register_kretprobe()
|
/Linux-v5.10/Documentation/trace/ |
D | kprobes.rst | 370 kp->fault_handler. Any or all handlers can be NULL. If kp->flags 418 User's fault-handler (kp->fault_handler):: 422 int fault_handler(struct kprobe *p, struct pt_regs *regs, int trapnr);
|