Searched refs:handler (Results 251 - 275 of 1317) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/acpi/acpica/
H A Dutinit.c148 acpi_gbl_global_notify[0].handler = NULL;
149 acpi_gbl_global_notify[1].handler = NULL;
/linux-master/arch/csky/kernel/probes/
H A Duprobes.c95 if (auprobe->api.handler)
96 auprobe->api.handler(insn, addr, regs);
/linux-master/drivers/crypto/ccp/
H A Dsp-dev.h145 int sp_request_ccp_irq(struct sp_device *sp, irq_handler_t handler,
148 int sp_request_psp_irq(struct sp_device *sp, irq_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);
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Daldebaran.c49 struct amdgpu_reset_handler *handler; local
61 dev_dbg(adev->dev, "Getting reset handler for method %d\n",
63 for_each_handler(i, handler, reset_ctl) {
64 if (handler->reset_method == reset_context->method)
65 return handler;
69 dev_dbg(adev->dev, "Reset handler not found!\n");
120 struct amdgpu_reset_handler *handler; local
126 for_each_handler(i, handler, reset_ctl) {
127 if (handler->reset_method == reset_ctl->active_reset) {
129 handler
[all...]
H A Damdgpu_reset.h147 #define for_each_handler(i, handler, reset_ctl) \
149 (handler = (*reset_ctl->reset_handlers)[i]); \
/linux-master/drivers/media/platform/mediatek/vpu/
H A Dmtk_vpu.c111 * struct vpu_wdt_handler - VPU watchdog reset handler
113 * @reset_func: reset handler
124 * @handler: VPU watchdog reset handler
129 struct vpu_wdt_handler handler[VPU_RST_MAX]; member in struct:vpu_wdt
156 * @handler: IPI handler
157 * @name: the name of IPI handler
158 * @priv: the private data of IPI handler
161 ipi_handler_t handler; member in struct:vpu_ipi_desc
287 vpu_ipi_register(struct platform_device *pdev, enum ipi_id id, ipi_handler_t handler, const char *name, void *priv) argument
389 struct vpu_wdt_handler *handler = wdt->handler; local
417 struct vpu_wdt_handler *handler; local
[all...]
/linux-master/drivers/input/rmi4/
H A Drmi_bus.h94 #define rmi_register_function_handler(handler) \
95 __rmi_register_function_handler(handler, THIS_MODULE, KBUILD_MODNAME)
/linux-master/arch/x86/kernel/cpu/
H A Dmshyperv.c132 void hv_setup_vmbus_handler(void (*handler)(void)) argument
134 vmbus_handler = handler;
161 void hv_setup_stimer0_handler(void (*handler)(void)) argument
163 hv_stimer0_handler = handler;
172 void hv_setup_kexec_handler(void (*handler)(void)) argument
174 hv_kexec_handler = handler;
182 void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs))
184 hv_crash_handler = handler;
545 /* Install system interrupt handler for hypervisor callback */
548 /* Install system interrupt handler fo
[all...]
/linux-master/drivers/media/platform/mediatek/vcodec/common/
H A Dmtk_vcodec_fw_vpu.c29 mtk_vcodec_ipi_handler handler,
32 return vpu_ipi_register(fw->pdev, id, handler, name, priv);
28 mtk_vcodec_vpu_set_ipi_register(struct mtk_vcodec_fw *fw, int id, mtk_vcodec_ipi_handler handler, const char *name, void *priv) argument
/linux-master/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c132 Py_FatalError("problem in Python trace event handler");
151 PyObject *handler; local
153 handler = PyDict_GetItemString(main_dict, handler_name);
154 if (handler && !PyCallable_Check(handler))
156 return handler;
159 static void call_object(PyObject *handler, PyObject *args, const char *die_msg) argument
163 retval = PyObject_CallObject(handler, args);
171 PyObject *handler; local
173 handler
179 get_argument_count(PyObject *handler) argument
946 PyObject *handler, *context, *t, *obj = NULL, *callchain; local
1472 PyObject *handler, *t, *dict, *callchain; local
1531 PyObject *handler, *t; local
1565 PyObject *handler, *t; local
1617 PyObject *handler, *t; local
1664 PyObject *handler, *t; local
1715 PyObject *handler, *t; local
[all...]
/linux-master/drivers/input/
H A Dinput.c110 struct input_handler *handler = handle->handler; local
114 if (handler->filter) {
116 if (handler->filter(handle, v->type, v->code, v->value))
128 if (handler->events)
129 handler->events(handle, vals, count);
130 else if (handler->event)
132 handler->event(handle, v->type, v->code, v->value);
442 * input_inject_event() - send input event from input handler
598 if (handle->open && handle->handler
1040 input_match_device(struct input_handler *handler, struct input_dev *dev) argument
1055 input_attach_handler(struct input_dev *dev, struct input_handler *handler) argument
1291 struct input_handler *handler = container_of(v, struct input_handler, node); local
2323 struct input_handler *handler; local
2454 input_register_handler(struct input_handler *handler) argument
2484 input_unregister_handler(struct input_handler *handler) argument
2514 input_handler_for_each_handle(struct input_handler *handler, void *data, int (*fn)(struct input_handle *, void *)) argument
2547 struct input_handler *handler = handle->handler; local
[all...]
/linux-master/drivers/staging/vme_user/
H A Dvme.c1216 struct vme_error_handler *handler; local
1220 list_for_each_entry(handler, &bridge->vme_error_handlers, list) {
1221 if ((aspace == handler->aspace) &&
1222 (address >= handler->start) &&
1223 (address < handler->end)) {
1224 if (!handler->num_errors)
1225 handler->first_error = address;
1226 if (handler->num_errors != UINT_MAX)
1227 handler->num_errors++;
1242 struct vme_error_handler *handler; local
1259 vme_unregister_error_handler(struct vme_error_handler *handler) argument
[all...]
/linux-master/arch/mips/math-emu/
H A Dcp1emu.c1473 union ieee754sp(*handler) (union ieee754sp, union ieee754sp, union ieee754sp);
1518 handler = ieee754sp_madd;
1520 handler = fpemu_sp_madd;
1524 handler = ieee754sp_msub;
1526 handler = fpemu_sp_msub;
1530 handler = ieee754sp_nmadd;
1532 handler = fpemu_sp_nmadd;
1536 handler = ieee754sp_nmsub;
1538 handler = fpemu_sp_nmsub;
1545 fd = (*handler) (f
1704 } handler; local
2081 } handler; local
[all...]
/linux-master/drivers/greybus/
H A Dconnection.c127 * @handler: request handler (may be NULL)
147 gb_request_handler_t handler,
179 connection->handler = handler;
229 gb_request_handler_t handler)
231 return _gb_connection_create(hd, hd_cport_id, NULL, NULL, 0, handler,
245 gb_request_handler_t handler)
250 handler, 0);
256 gb_request_handler_t handler,
144 _gb_connection_create(struct gb_host_device *hd, int hd_cport_id, struct gb_interface *intf, struct gb_bundle *bundle, int cport_id, gb_request_handler_t handler, unsigned long flags) argument
228 gb_connection_create_static(struct gb_host_device *hd, u16 hd_cport_id, gb_request_handler_t handler) argument
244 gb_connection_create(struct gb_bundle *bundle, u16 cport_id, gb_request_handler_t handler) argument
255 gb_connection_create_flags(struct gb_bundle *bundle, u16 cport_id, gb_request_handler_t handler, unsigned long flags) argument
[all...]
/linux-master/drivers/media/i2c/
H A Dov4689.c639 container_of(ctrl->handler, struct ov4689, ctrl_handler);
707 struct v4l2_ctrl_handler *handler; local
714 handler = &ov4689->ctrl_handler;
716 ret = v4l2_ctrl_handler_init(handler, 10);
719 handler->lock = &ov4689->mutex;
721 ctrl = v4l2_ctrl_new_int_menu(handler, NULL, V4L2_CID_LINK_FREQ, 0, 0,
726 v4l2_ctrl_new_std(handler, NULL, V4L2_CID_PIXEL_RATE, 0,
730 ctrl = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK, h_blank_def,
736 v4l2_ctrl_new_std(handler, &ov4689_ctrl_ops, V4L2_CID_VBLANK,
742 v4l2_ctrl_new_std(handler,
[all...]
H A Dov2685.c584 struct ov2685 *ov2685 = container_of(ctrl->handler,
665 struct v4l2_ctrl_handler *handler; local
672 handler = &ov2685->ctrl_handler;
674 ret = v4l2_ctrl_handler_init(handler, 10);
677 handler->lock = &ov2685->mutex;
679 ctrl = v4l2_ctrl_new_int_menu(handler, NULL, V4L2_CID_LINK_FREQ,
686 v4l2_ctrl_new_std(handler, NULL, V4L2_CID_PIXEL_RATE,
690 ov2685->hblank = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK,
695 ov2685->vblank = v4l2_ctrl_new_std(handler, &ov2685_ctrl_ops,
701 ov2685->exposure = v4l2_ctrl_new_std(handler,
[all...]
/linux-master/drivers/usb/renesas_usbhs/
H A Dfifo.c35 dev_err(dev, "null handler\n");
62 if (!pipe->handler) {
63 dev_err(dev, "no handler function\n");
64 pipe->handler = &usbhsf_null_handler;
70 * each pkt must hold own handler.
71 * because handler might be changed by its situation.
72 * dma handler -> pio handler.
76 pkt->handler = pipe->handler;
[all...]
/linux-master/kernel/irq/
H A Dmanage.c82 * function while holding a resource the IRQ handler may need you
87 * that all parts (hardirq and threaded handler) have completed.
89 * Returns: false if a threaded handler is active.
115 * We made sure that no hardirq handler is running. Now verify that no
127 * holding a resource the IRQ handler may need you will deadlock.
715 * instances of the IRQ handler have completed before returning.
733 * holding a resource the IRQ handler may need you will deadlock.
755 * holding a resource the hard IRQ handler may need you will deadlock.
760 * Returns: false if a threaded handler is active.
781 * instances of the IRQ handler hav
2147 request_threaded_irq(unsigned int irq, irq_handler_t handler, irq_handler_t thread_fn, unsigned long irqflags, const char *devname, void *dev_id) argument
2255 request_any_context_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, const char *name, void *dev_id) argument
2305 request_nmi(unsigned int irq, irq_handler_t handler, unsigned long irqflags, const char *name, void *dev_id) argument
2601 __request_percpu_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, const char *devname, void __percpu *dev_id) argument
2667 request_percpu_nmi(unsigned int irq, irq_handler_t handler, const char *name, void __percpu *dev_id) argument
[all...]
/linux-master/net/ipv4/
H A Dicmp.c189 enum skb_drop_reason (*handler)(struct sk_buff *skb); member in struct:icmp_control
1225 /* We can't use icmp_pointers[].handler() because it is an array of
1274 reason = icmp_pointers[icmph->type].handler(skb);
1382 .handler = ping_rcv,
1385 .handler = icmp_discard,
1389 .handler = icmp_discard,
1393 .handler = icmp_unreach,
1397 .handler = icmp_unreach,
1401 .handler = icmp_redirect,
1405 .handler
[all...]
/linux-master/drivers/clocksource/
H A Dtimer-of.h17 irq_handler_t handler; member in struct:of_timer_irq
/linux-master/arch/alpha/kernel/
H A Derr_impl.h30 struct el_subpacket *(*handler)(struct el_subpacket *); member in struct:el_subpacket_handler
/linux-master/drivers/scsi/cxlflash/
H A Dbackend.h22 int (*map_afu_irq)(void *ctx_cookie, int num, irq_handler_t handler,
/linux-master/include/linux/soc/ixp4xx/
H A Dqmgr.h65 void (*handler)(void *pdev), void *pdev);
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Doutput.c245 void (*handler)(void *), void *data)
247 return dss_mgr_ops->register_framedone_handler(mgr, handler, data);
252 void (*handler)(void *), void *data)
254 dss_mgr_ops->unregister_framedone_handler(mgr, handler, data);

Completed in 292 milliseconds

<<11121314151617181920>>