Searched refs:handler (Results 226 - 250 of 1317) sorted by relevance

1234567891011>>

/linux-master/drivers/input/misc/
H A Drotary_encoder.c190 irq_handler_t handler; local
263 handler = &rotary_encoder_quarter_period_irq;
267 handler = &rotary_encoder_half_period_irq;
271 handler = &rotary_encoder_irq;
290 NULL, handler,
H A Dhisi_powerkey.c65 irqreturn_t (*handler)(int irq, void *q); member in struct:__anon714
97 hi65xx_irq_info[i].handler,
/linux-master/fs/xfs/
H A Dxfs_xattr.c126 xfs_xattr_get(const struct xattr_handler *handler, struct dentry *unused, argument
131 .attr_filter = handler->flags,
149 xfs_xattr_set(const struct xattr_handler *handler, argument
156 .attr_filter = handler->flags,
166 if (!error && (handler->flags & XFS_ATTR_ROOT))
/linux-master/drivers/media/i2c/
H A Dov5693.c162 struct v4l2_ctrl_handler handler; member in struct:ov5693_device::ov5693_v4l2_ctrls
478 container_of(ctrl->handler, struct ov5693_device, ctrls.handler);
532 struct ov5693_device *ov5693 = container_of(ctrl->handler,
534 ctrls.handler);
982 ret = __v4l2_ctrl_handler_setup(&ov5693->ctrls.handler);
1094 ret = v4l2_ctrl_handler_init(&ctrls->handler, 12);
1099 ctrls->link_freq = v4l2_ctrl_new_int_menu(&ctrls->handler,
1106 ctrls->pixel_rate = v4l2_ctrl_new_std(&ctrls->handler, NULL,
1113 ctrls->exposure = v4l2_ctrl_new_std(&ctrls->handler, op
[all...]
/linux-master/net/smc/
H A Dsmc_wr.c42 smc_wr_tx_handler handler; member in struct:smc_wr_tx_pend
131 if (pnd_snd.handler)
132 pnd_snd.handler(&pnd_snd.priv, link, wc->status);
188 * @handler: Send completion handler function pointer.
191 * @wr_pend_priv: Out value returns pointer serving as handler context.
196 smc_wr_tx_handler handler,
232 wr_pend->handler = handler;
245 smc_wr_tx_handler handler,
195 smc_wr_tx_get_free_slot(struct smc_link *link, smc_wr_tx_handler handler, struct smc_wr_buf **wr_buf, struct smc_rdma_wr **wr_rdma_buf, struct smc_wr_tx_pend_priv **wr_pend_priv) argument
244 smc_wr_tx_get_v2_slot(struct smc_link *link, smc_wr_tx_handler handler, struct smc_wr_v2_buf **wr_buf, struct smc_wr_tx_pend_priv **wr_pend_priv) argument
408 smc_wr_rx_register_handler(struct smc_wr_rx_handler *handler) argument
433 struct smc_wr_rx_handler *handler; local
[all...]
/linux-master/arch/sh/include/asm/
H A Duaccess.h118 extern void *set_exception_table_vec(unsigned int vec, void *handler);
120 static inline void *set_exception_table_evt(unsigned int evt, void *handler) argument
122 return set_exception_table_vec(evt >> 5, handler);
/linux-master/arch/arm/probes/
H A Ddecode.h147 * DECODE_SIMULATE(mask, value, handler)
148 * The probes instruction handler is set to the value found by
149 * indexing into the action array using the value of 'handler'. This
153 * DECODE_EMULATE(mask, value, handler)
154 * The probes instruction handler is set to the value found by
155 * indexing into the action array using the value of 'handler'. This
180 * DECODE_SIMULATEX(mask, value, handler, regs)
181 * DECODE_EMULATEX (mask, value, handler, regs)
222 * the kprobes instruction slot. This can then be called later by the handler
282 probes_insn_handler_t *handler; member in union:decode_action
332 union decode_item handler; member in struct:decode_simulate
345 union decode_item handler; member in struct:decode_emulate
[all...]
/linux-master/include/soc/tegra/
H A Dbpmp.h68 tegra_bpmp_mrq_handler_t handler; member in struct:tegra_bpmp_mrq
139 tegra_bpmp_mrq_handler_t handler, void *data);
169 tegra_bpmp_mrq_handler_t handler,
167 tegra_bpmp_request_mrq(struct tegra_bpmp *bpmp, unsigned int mrq, tegra_bpmp_mrq_handler_t handler, void *data) argument
/linux-master/drivers/macintosh/
H A Dmac_hid.c93 static int mac_hid_emumouse_connect(struct input_handler *handler, argument
109 handle->handler = handler;
/linux-master/kernel/time/
H A Dtick-internal.h90 /* Set the periodic handler in non broadcast mode */
105 void (*handler)(struct clock_event_device *),
109 extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
119 void (*handler)(struct clock_event_device *),
/linux-master/drivers/pci/
H A Dirq.c22 * @handler: Function to be called when the IRQ occurs.
23 * Primary handler for threaded interrupts.
24 * If NULL and thread_fn != NULL the default primary handler is
26 * @thread_fn: Function called from the IRQ handler thread
28 * @dev_id: Cookie passed back to the handler function
29 * @fmt: Printf-like format string naming the handler
32 * IRQ handling. From the point this call is made @handler and @thread_fn may
37 int pci_request_irq(struct pci_dev *dev, unsigned int nr, irq_handler_t handler, argument
45 if (!handler)
54 ret = request_threaded_irq(pci_irq_vector(dev, nr), handler, thread_f
[all...]
/linux-master/arch/arm64/kernel/
H A Dentry-common.c305 void (*handler)(struct pt_regs *))
310 call_on_irq_stack(regs, handler);
312 handler(regs);
523 void (*handler)(struct pt_regs *))
526 do_interrupt_handler(regs, handler);
531 void (*handler)(struct pt_regs *))
536 do_interrupt_handler(regs, handler);
544 void (*handler)(struct pt_regs *))
549 __el1_pnmi(regs, handler);
551 __el1_irq(regs, handler);
[all...]
/linux-master/drivers/acpi/
H A Dglue.c388 if (adev->handler && adev->handler->bind)
389 adev->handler->bind(dev);
410 else if (adev->handler && adev->handler->unbind)
411 adev->handler->unbind(dev);
/linux-master/arch/m68k/include/asm/
H A Dmac_iop.h147 void (*handler)(struct iop_msg *); member in struct:iop_msg
154 void (*handler)(struct iop_msg *),
/linux-master/drivers/scsi/cxlflash/
H A Dcxl_hw.c38 irq_handler_t handler, void *cookie, char *name)
40 return cxl_map_afu_irq(ctx_cookie, num, handler, cookie, name);
37 cxlflash_map_afu_irq(void *ctx_cookie, int num, irq_handler_t handler, void *cookie, char *name) argument
/linux-master/include/linux/mfd/wm8994/
H A Dcore.h121 irq_handler_t handler, const char *name,
127 NULL, handler, IRQF_TRIGGER_RISING, name,
120 wm8994_request_irq(struct wm8994 *wm8994, int irq, irq_handler_t handler, const char *name, void *data) argument
/linux-master/tools/testing/selftests/x86/
H A Dioperm.c25 static void sethandler(int sig, void (*handler)(int, siginfo_t *, void *), argument
30 sa.sa_sigaction = handler;
H A Dsigaltstack.c30 static void sethandler(int sig, void (*handler)(int, siginfo_t *, void *), argument
36 sa.sa_sigaction = handler;
H A Dsyscall_arg_fault.c20 static void sethandler(int sig, void (*handler)(int, siginfo_t *, void *), argument
25 sa.sa_sigaction = handler;
136 * but we can fix it up with a signal handler.
/linux-master/drivers/infiniband/core/
H A Drdma_core.h88 int(__rcu *handler)(struct uverbs_attr_bundle *attrs); member in struct:uverbs_api_ioctl_method
100 int (*handler)(struct uverbs_attr_bundle *attrs); member in struct:uverbs_api_write_method
/linux-master/arch/um/drivers/
H A Dpcap_user.c98 static void handler(u_char *data, const struct pcap_pkthdr *header, function
117 n = pcap_dispatch(pri->pcap, 1, handler, (u_char *) &hdata);
/linux-master/include/rdma/
H A Duverbs_named_ioctl.h30 .handler = UVERBS_HANDLER(_method_id), \
35 /* Create a standard destroy method using the default handler. The handle_attr
37 * default handler does not support any other attributes.
44 .handler = uverbs_destroy_def_handler, \
/linux-master/include/net/
H A Dllc.h107 void (*handler)(struct llc_sap *sap, struct sk_buff *skb));
110 void llc_set_station_handler(void (*handler)(struct sk_buff *skb));
/linux-master/kernel/irq/
H A Dhandle.c44 * Special, empty irq handler:
65 * we handled the interrupt. The hardirq handler has disabled the
72 * Wake up the handler thread for this action. If the
92 * Hard irq handler:
118 * or we are waiting in the flow handler for desc->lock to be
128 * it returns from the handler or in the exit path and wakes
131 * against this code (hard irq handler) via IRQS_INPROGRESS
158 res = action->handler(irq, action->dev_id);
161 if (WARN_ONCE(!irqs_disabled(),"irq %u handler %pS enabled interrupts\n",
162 irq, action->handler))
[all...]
/linux-master/drivers/misc/cxl/
H A Dirq.c225 irq_handler_t handler, void *cookie, const char *name)
242 result = request_irq(virq, handler, 0, name, cookie);
257 irq_handler_t handler,
268 if (!(virq = cxl_map_irq(adapter, hwirq, handler, cookie, name)))
362 irqreturn_t (*handler)(int irq, void *data);
373 * need to connect a handler for guests,
380 handler = cxl_ops->psl_interrupt;
382 handler = cxl_irq_afu;
383 cxl_map_irq(ctx->afu->adapter, hwirq, handler, ctx,
224 cxl_map_irq(struct cxl *adapter, irq_hw_number_t hwirq, irq_handler_t handler, void *cookie, const char *name) argument
256 cxl_register_one_irq(struct cxl *adapter, irq_handler_t handler, void *cookie, irq_hw_number_t *dest_hwirq, unsigned int *dest_virq, const char *name) argument

Completed in 201 milliseconds

1234567891011>>