Searched refs:handler (Results 201 - 225 of 1317) sorted by path

1234567891011>>

/linux-master/arch/powerpc/platforms/powermac/
H A Dpfunc_core.c930 client->handler(client->data);
/linux-master/arch/powerpc/platforms/pseries/
H A Devent_sources.c12 irq_handler_t handler,
25 rc = request_irq(virq, handler, 0, name, NULL);
11 request_event_sources_irqs(struct device_node *np, irq_handler_t handler, const char *name) argument
H A Dibmebus.c234 int ibmebus_request_irq(u32 ist, irq_handler_t handler, argument
243 return request_irq(irq, handler, irq_flags, devname, dev_id);
H A Dpseries.h15 irq_handler_t handler, const char *name);
/linux-master/arch/powerpc/sysdev/
H A Dpmi.c29 struct list_head handler; member in struct:pmi_data
102 struct pmi_handler *handler; local
105 list_for_each_entry(handler, &data->handler, node) {
106 pr_debug("pmi: notifying handler %p\n", handler);
107 if (handler->type == data->msg.type)
108 handler->handle_pmi_message(data->msg);
138 INIT_LIST_HEAD(&data->handler);
178 struct pmi_handler *handler, *tm local
239 pmi_register_handler(struct pmi_handler *handler) argument
252 pmi_unregister_handler(struct pmi_handler *handler) argument
[all...]
/linux-master/arch/powerpc/xmon/
H A Dxmon.c4004 .handler = sysrq_handle_xmon,
/linux-master/arch/riscv/include/asm/
H A Dkvm_vcpu_sbi.h43 * SBI extension handler. It can be defined for a given extension or group of
47 int (*handler)(struct kvm_vcpu *vcpu, struct kvm_run *run, member in struct:kvm_vcpu_sbi_extension
H A Dprobes.h12 probes_handler_t *handler; member in struct:arch_probe_insn
/linux-master/arch/riscv/kernel/
H A Dmodule.c173 * handler.
183 * handler.
612 * location. The final value is stored into location using the handler
782 int (*handler)(struct module *me, void *location, Elf_Addr v);
824 handler = reloc_handlers[type].reloc_handler;
826 handler = NULL;
828 if (!handler) {
897 res = handler(me, location, v);
/linux-master/arch/riscv/kernel/probes/
H A Dkprobes.c45 if (p->ainsn.api.handler)
46 p->ainsn.api.handler((u32)p->opcode,
159 * into the interrupt handler.
239 /* call post handler */
263 * and allow the page fault handler to continue as a
280 * In case the user-specified fault handler returned
311 * If we have no pre-handler or it returned 0, we
313 * pre-handler and it returned non-zero, it will
H A Dsimulate-insn.h18 api->handler = simulate_##name; \
H A Duprobes.c102 if (auprobe->api.handler)
103 auprobe->api.handler(insn, addr, regs);
/linux-master/arch/riscv/kvm/
H A Dvcpu_sbi.c19 .handler = NULL,
27 .handler = NULL,
431 if (sbi_ext && sbi_ext->handler) {
437 ret = sbi_ext->handler(vcpu, run, &sbi_ret);
H A Dvcpu_sbi_base.c72 .handler = kvm_sbi_ext_base_handler,
91 .handler = kvm_sbi_ext_forward_handler,
97 .handler = kvm_sbi_ext_forward_handler,
H A Dvcpu_sbi_hsm.c117 .handler = kvm_sbi_ext_hsm_handler,
H A Dvcpu_sbi_pmu.c84 .handler = kvm_sbi_ext_pmu_handler,
H A Dvcpu_sbi_replace.c42 .handler = kvm_sbi_ext_time_handler,
80 .handler = kvm_sbi_ext_ipi_handler,
134 .handler = kvm_sbi_ext_rfence_handler,
176 .handler = kvm_sbi_ext_srst_handler,
208 .handler = kvm_sbi_ext_dbcn_handler,
H A Dvcpu_sbi_sta.c157 .handler = kvm_sbi_ext_sta_handler,
H A Dvcpu_sbi_v01.c113 .handler = kvm_sbi_ext_v01_handler,
/linux-master/arch/s390/include/asm/
H A Dairq.h19 void (*handler)(struct airq_struct *airq, struct tpi_info *tpi_info); member in struct:airq_struct
H A Dccwdev.h81 * @handler: interrupt handler
83 * @handler is a member of the device rather than the driver since a driver
97 void (*handler) (struct ccw_device *, unsigned long, struct irb *); member in struct:ccw_device
113 * Possible CIO actions triggered by the unit check handler.
131 * @uc_handler: callback for unit check handler
H A Dcrw.h32 extern int crw_register_handler(int rsc, crw_handler_t handler);
H A Deadm.h111 void (*handler) (struct scm_device *scmdev, void *data, member in struct:scm_driver
H A Dirq.h96 int register_external_irq(u16 code, ext_int_handler_t handler);
97 int unregister_external_irq(u16 code, ext_int_handler_t handler);
/linux-master/arch/s390/kernel/
H A Dirq.c284 ext_int_handler_t handler; member in struct:ext_int_info
290 /* ext_int_hash_lock protects the handler lists for external interrupts */
300 int register_external_irq(u16 code, ext_int_handler_t handler) argument
310 p->handler = handler;
320 int unregister_external_irq(u16 code, ext_int_handler_t handler) argument
328 if (p->code == code && p->handler == handler) {
354 p->handler(ext_code, regs->int_parm, regs->int_parm_long);

Completed in 472 milliseconds

1234567891011>>