Searched defs:handler (Results 1 - 25 of 27) sorted by relevance

12

/include/linux/
H A Dpersonality.h29 handler_t handler; /* handler for syscalls */ member in struct:exec_domain
H A Dsysrq.h32 void (*handler)(int); member in struct:sysrq_key_op
H A Dirqdesc.h22 * @handle_irq: highlevel irq-events handler
23 * @preflow_handler: handler called before the flow handler (currently used by sparc)
47 * @name: flow handler name for /proc/interrupts output
123 * irqchip-style controller then we call the ->handle_irq() handler,
159 irq_flow_handler_t handler)
164 desc->handle_irq = handler;
170 irq_flow_handler_t handler, const char *name)
176 desc->handle_irq = handler;
207 __irq_set_preflow_handler(unsigned int irq, irq_preflow_handler_t handler) argument
158 __irq_set_handler_locked(unsigned int irq, irq_flow_handler_t handler) argument
169 __irq_set_chip_handler_name_locked(unsigned int irq, struct irq_chip *chip, irq_flow_handler_t handler, const char *name) argument
[all...]
H A Duio_driver.h88 * @handler: the device's irq handler
103 irqreturn_t (*handler)(int irq, struct uio_info *dev_info); member in struct:uio_info
H A Duprobes.h49 int (*handler)(struct uprobe_consumer *self, struct pt_regs *regs); member in struct:uprobe_consumer
H A Dvga_switcheroo.h57 int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler);
75 static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; } argument
H A Dsfi.h180 sfi_table_handler handler);
202 sfi_table_handler handler)
200 sfi_table_parse(char *signature, char *oem_id, char *oem_table_id, sfi_table_handler handler) argument
H A Dinput.h91 * @event: event handler for events sent _to_ the device, like EV_LED
247 * @event: event handler. This method is being called by input core with
250 * @events: event sequence handler. This method is being called by
255 * @match: called after comparing device's id with handler's id_table
256 * to perform fine-grained matching between device and handler
257 * @connect: called when attaching a handler to an input device
258 * @disconnect: disconnects a handler from input device
259 * @start: starts handler for given handle. This function is called by
265 * @name: name of the handler, to be shown in /proc/bus/input/handlers
268 * @h_list: list of input handles associated with the handler
327 struct input_handler *handler; member in struct:input_handle
[all...]
H A Dkprobes.h76 /* list of kprobes for multi-handler support */
104 * ... called if breakpoint trap occurs in probe handler.
172 #define JPROBE_ENTRY(handler) (handler)
177 * User needs to provide a handler function, and initialize maxactive.
186 kretprobe_handler_t handler; member in struct:kretprobe
H A Dinterrupt.h42 * IRQF_DISABLED - keep irqs disabled when calling the action handler.
52 * IRQF_ONESHOT - Interrupt is not reenabled after the hardirq handler finished.
54 * irq line disabled until the threaded handler has been run.
92 * @handler: interrupt handler function
99 * @thread_fn: interrupt handler function for threaded interrupts
106 irq_handler_t handler; member in struct:irqaction
123 request_threaded_irq(unsigned int irq, irq_handler_t handler,
128 request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, argument
131 return request_threaded_irq(irq, handler, NUL
154 devm_request_irq(struct device *dev, unsigned int irq, irq_handler_t handler, unsigned long irqflags, const char *devname, void *dev_id) argument
[all...]
H A Diommu.h55 iommu_fault_handler_t handler; member in struct:iommu_domain
161 iommu_fault_handler_t handler, void *token);
223 * Specifically, -ENOSYS is returned if a fault handler isn't installed
233 * if upper layers showed interest and installed a fault handler,
236 if (domain->handler)
237 ret = domain->handler(domain, dev, iova, flags,
314 iommu_fault_handler_t handler, void *token)
313 iommu_set_fault_handler(struct iommu_domain *domain, iommu_fault_handler_t handler, void *token) argument
H A Dirq.h479 * Set a highlevel chained flow handler for a given IRQ.
480 * (a chained handler is automatically enabled and set to
673 * @handler: Flow handler associated with this chip
685 irq_flow_handler_t handler; member in struct:irq_chip_type
786 void __iomem *reg_base, irq_flow_handler_t handler);
797 irq_flow_handler_t handler,
H A Dide.h221 ide_started, /* a drive operation was started, handler was set */
744 /* IRQ handler, if active */
745 ide_startstop_t (*handler)(ide_drive_t *); member in struct:hwif_s
797 * internal ide interrupt handler type
/include/net/
H A Dgre.h13 int (*handler)(struct sk_buff *skb); member in struct:gre_protocol
27 int (*handler)(struct sk_buff *skb, const struct tnl_ptk_info *tpi); member in struct:gre_cisco_protocol
H A Dprotocol.h18 * Alan Cox : Added a name field and a frag handler
43 int (*handler)(struct sk_buff *skb); member in struct:net_protocol
58 int (*handler)(struct sk_buff *skb); member in struct:inet6_protocol
H A Dxfrm.h1354 int (*handler)(struct sk_buff *skb); member in struct:xfrm4_protocol
1365 int (*handler)(struct sk_buff *skb); member in struct:xfrm6_protocol
1376 int (*handler)(struct sk_buff *skb); member in struct:xfrm_tunnel
1384 int (*handler)(struct sk_buff *skb); member in struct:xfrm6_tunnel
1533 int xfrm4_protocol_register(struct xfrm4_protocol *handler, unsigned char protocol);
1534 int xfrm4_protocol_deregister(struct xfrm4_protocol *handler, unsigned char protocol);
1535 int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family);
1536 int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family);
1547 int xfrm6_protocol_register(struct xfrm6_protocol *handler, unsigned char protocol);
1548 int xfrm6_protocol_deregister(struct xfrm6_protocol *handler, unsigne
[all...]
/include/linux/mfd/wm8994/
H A Dcore.h126 irq_handler_t handler, const char *name,
132 NULL, handler, IRQF_TRIGGER_RISING, name,
125 wm8994_request_irq(struct wm8994 *wm8994, int irq, irq_handler_t handler, const char *name, void *data) argument
/include/net/iucv/
H A Diucv.h90 * handler: address of iucv handler structure
91 * private: private information of the handler associated with the path
99 struct iucv_handler *handler; member in struct:iucv_path
136 * structure and "asks" the handler if this path belongs to the
137 * handler. To accept the path the path_pending function needs
140 * handler. The order in which the path_pending functions are
148 * for this handler with iucv_path_connect and got accepted by the
193 * @handler: address of iucv handler structur
[all...]
/include/media/
H A Dv4l2-ctrls.h67 * ctrl->handler->lock is held when these ops are called, so no
68 * one else can access controls owned by that handler.
98 * @handler: The handler that owns the control.
107 * @is_private: If set, then this control is private to its handler and it
123 * @call_notify: If set, then call the handler's notify function whenever the
167 struct v4l2_ctrl_handler *handler; member in struct:v4l2_ctrl
219 * Each control handler has a list of these refs. The list_head is used to
230 /** struct v4l2_ctrl_handler - The control handler keeps track of all the
231 * controls: both the controls owned by the handler an
[all...]
/include/pcmcia/
H A Dds.h211 irq_handler_t handler);
214 irq_handler_t handler)
216 return __pcmcia_request_exclusive_irq(p_dev, handler);
220 irq_handler_t handler);
213 pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, irq_handler_t handler) argument
/include/linux/mfd/
H A Dmc13xxx.h25 irq_handler_t handler, const char *name, void *dev);
44 irq_handler_t handler,
47 return mc13xxx_irq_request(mc13xxx, irq, handler, name, dev);
43 mc13xxx_irq_request_nounmask(struct mc13xxx *mc13xxx, int irq, irq_handler_t handler, const char *name, void *dev) argument
H A D88pm80x.h328 irq_handler_t handler, unsigned long flags,
334 NULL, handler, flags, name, data);
327 pm80x_request_irq(struct pm80x_chip *pm80x, int irq, irq_handler_t handler, unsigned long flags, const char *name, void *data) argument
/include/linux/mfd/pcf50633/
H A Dcore.h53 void (*handler) (int, void *); member in struct:pcf50633_irq
58 void (*handler) (int, void *), void *data);
/include/acpi/
H A Dacpi_bus.h314 u8 notifier_present:1; /* Wake-up notify handler has been installed */
356 struct acpi_scan_handler *handler; member in struct:acpi_device
449 int acpi_scan_add_handler(struct acpi_scan_handler *handler);
/include/linux/mfd/wm8350/
H A Dcore.h664 irq_handler_t handler,
672 handler, flags, name, data);
663 wm8350_register_irq(struct wm8350 *wm8350, int irq, irq_handler_t handler, unsigned long flags, const char *name, void *data) argument

Completed in 413 milliseconds

12