Searched refs:handler (Results 26 - 50 of 1317) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/filesystems/
H A Ddnotify_test.c11 static void handler(int sig, siginfo_t *si, void *data) function
21 act.sa_sigaction = handler;
/linux-master/drivers/gpu/drm/i915/gvt/
H A Dpage_track.h39 gvt_page_track_handler_t handler; member in struct:intel_vgpu_page_track
48 unsigned long gfn, gvt_page_track_handler_t handler,
/linux-master/arch/arm64/kernel/probes/
H A Ddecode-insn.c86 api->handler = simulate_b_cond;
89 api->handler = simulate_cbz_cbnz;
92 api->handler = simulate_tbz_tbnz;
94 api->handler = simulate_adr_adrp;
97 api->handler = simulate_b_bl;
101 api->handler = simulate_br_blr_ret;
103 api->handler = simulate_ldr_literal;
105 api->handler = simulate_ldrsw_literal;
/linux-master/tools/testing/selftests/kvm/include/
H A Duserfaultfd_util.h25 uffd_handler_t handler; member in struct:uffd_desc
31 uffd_handler_t handler);
/linux-master/fs/ext2/
H A Dxattr_trusted.c19 ext2_xattr_trusted_get(const struct xattr_handler *handler, argument
28 ext2_xattr_trusted_set(const struct xattr_handler *handler, argument
/linux-master/fs/hfsplus/
H A Dxattr_trusted.c15 static int hfsplus_trusted_getxattr(const struct xattr_handler *handler, argument
24 static int hfsplus_trusted_setxattr(const struct xattr_handler *handler, argument
H A Dxattr_user.c15 static int hfsplus_user_getxattr(const struct xattr_handler *handler, argument
24 static int hfsplus_user_setxattr(const struct xattr_handler *handler, argument
/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/drivers/acpi/acpica/
H A Devhandler.c65 * We install the default PCI config space handler at the root so that
72 * NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
110 * RETURN: TRUE if default handler is installed, FALSE otherwise
112 * DESCRIPTION: Check if the default handler is installed for the requested
128 handler_obj = obj_desc->common_notify.handler;
153 * DESCRIPTION: This routine installs an address handler into objects that are
156 * If the Object is a Device, and the device has a handler of
159 * This is because the existing handler is closer in proximity
214 /* Check if this Device already has a handler for this address space */
220 handler);
328 acpi_ev_install_space_handler(struct acpi_namespace_node *node, acpi_adr_space_type space_id, acpi_adr_space_handler handler, acpi_adr_space_setup setup, void *context) argument
[all...]
/linux-master/include/linux/platform_data/
H A Dmmc-mxcmmc.h23 * The board code can call 'handler' on a card detection
26 int (*init)(struct device *dev, irq_handler_t handler, void *data);
/linux-master/arch/arm/include/asm/
H A Dglue-pf.h51 #error Unknown prefetch abort handler type
/linux-master/arch/csky/include/asm/
H A Dprobes.h12 probes_handler_t *handler; member in struct:arch_probe_insn
/linux-master/arch/arm64/include/asm/
H A Dprobes.h19 probes_handler_t *handler; member in struct:arch_probe_insn
/linux-master/arch/riscv/include/asm/
H A Dprobes.h12 probes_handler_t *handler; member in struct:arch_probe_insn
/linux-master/fs/reiserfs/
H A Dxattr_trusted.c12 trusted_get(const struct xattr_handler *handler, struct dentry *unused, argument
18 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
23 trusted_set(const struct xattr_handler *handler, argument
32 xattr_full_name(handler, name),
/linux-master/drivers/gpu/drm/msm/
H A Dmsm_mmu.h30 int (*handler)(void *arg, unsigned long iova, int flags, void *data); member in struct:msm_mmu
48 int (*handler)(void *arg, unsigned long iova, int flags, void *data))
51 mmu->handler = handler;
/linux-master/fs/erofs/
H A Dxattr.h24 const struct xattr_handler *handler = NULL; local
39 handler = xattr_handler_map[idx];
41 if (!xattr_handler_can_list(handler, dentry))
44 return xattr_prefix(handler);
/linux-master/include/linux/
H A Dxattr.h52 * @handler: handler for this type of xattr
56 * @handler.
60 static inline bool xattr_handler_can_list(const struct xattr_handler *handler, argument
63 return handler && (!handler->list || handler->list(dentry));
99 static inline const char *xattr_prefix(const struct xattr_handler *handler) argument
101 return handler->prefix ?: handler
[all...]
/linux-master/arch/arm/probes/kprobes/
H A Dactions-thumb.c621 [PROBES_T16_ADD_SP] = {.handler = t16_simulate_add_sp_imm},
622 [PROBES_T16_CBZ] = {.handler = t16_simulate_cbz},
623 [PROBES_T16_SIGN_EXTEND] = {.handler = t16_emulate_loregs_rwflags},
626 [PROBES_T16_SEV] = {.handler = probes_emulate_none},
627 [PROBES_T16_WFE] = {.handler = probes_simulate_nop},
629 [PROBES_T16_CMP] = {.handler = t16_emulate_loregs_rwflags},
630 [PROBES_T16_ADDSUB] = {.handler = t16_emulate_loregs_noitrwflags},
631 [PROBES_T16_LOGICAL] = {.handler = t16_emulate_loregs_noitrwflags},
632 [PROBES_T16_LDR_LIT] = {.handler = t16_simulate_ldr_literal},
633 [PROBES_T16_BLX] = {.handler
[all...]
H A Dactions-common.c130 probes_insn_handler_t *handler = 0; local
137 handler = emulate_generic_r0_12_noflags;
143 handler = emulate_generic_r2_14_noflags;
150 handler = emulate_ldm_r3_15;
154 if (handler) {
158 asi->insn_handler = handler;
164 handler = is_ldm ? simulate_ldm1_pc : simulate_stm1_pc;
166 handler = simulate_ldm1stm1;
167 asi->insn_handler = handler;
/linux-master/drivers/platform/surface/
H A Dsurface_platform_profile.c32 struct platform_profile_handler handler; member in struct:ssam_tmp_profile_device
115 tpd = container_of(pprof, struct ssam_tmp_profile_device, handler);
135 tpd = container_of(pprof, struct ssam_tmp_profile_device, handler);
154 tpd->handler.profile_get = ssam_platform_profile_get;
155 tpd->handler.profile_set = ssam_platform_profile_set;
157 set_bit(PLATFORM_PROFILE_LOW_POWER, tpd->handler.choices);
158 set_bit(PLATFORM_PROFILE_BALANCED, tpd->handler.choices);
159 set_bit(PLATFORM_PROFILE_BALANCED_PERFORMANCE, tpd->handler.choices);
160 set_bit(PLATFORM_PROFILE_PERFORMANCE, tpd->handler.choices);
162 return platform_profile_register(&tpd->handler);
[all...]
/linux-master/drivers/scsi/
H A Dscsi_dh.c3 * SCSI device handler infrastructure.
120 * scsi_dh_handler_attach - Attach a device handler to a device
121 * @sdev - SCSI device the device handler should attach to
122 * @scsi_dh - The device handler to attach
154 sdev->handler = scsi_dh;
160 * scsi_dh_handler_detach - Detach a device handler from a device
161 * @sdev - SCSI device the device handler should be detached from
165 sdev->handler->detach(sdev);
166 sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name);
167 module_put(sdev->handler
[all...]
/linux-master/kernel/trace/
H A Drethook.c46 * all running rethook handler before calling rethook_free(), you need to
51 rcu_assign_pointer(rh->handler, NULL);
59 * @rh::data is cleaned if needed (or, the handler can access it after
87 return (rethook_handler_t)rcu_dereference_check(rh->handler,
93 * @data: a data to pass the @handler when hooking the return.
94 * @handler: the return hook callback function, must NOT be NULL
98 * Allocate and initialize a new rethook with @data and @handler.
101 * Note that @handler == NULL means this rethook is going to be freed.
103 struct rethook *rethook_alloc(void *data, rethook_handler_t handler, argument
108 if (!handler || nu
144 rethook_handler_t handler; local
163 rethook_handler_t handler = rethook_get_handler(rh); local
282 rethook_handler_t handler; local
[all...]
/linux-master/drivers/platform/x86/
H A Dinspur_platform_profile.c35 struct platform_profile_handler handler; member in struct:inspur_wmi_priv
91 handler);
139 handler);
180 priv->handler.profile_get = inspur_platform_profile_get;
181 priv->handler.profile_set = inspur_platform_profile_set;
183 set_bit(PLATFORM_PROFILE_LOW_POWER, priv->handler.choices);
184 set_bit(PLATFORM_PROFILE_BALANCED, priv->handler.choices);
185 set_bit(PLATFORM_PROFILE_PERFORMANCE, priv->handler.choices);
187 return platform_profile_register(&priv->handler);
/linux-master/drivers/gpu/drm/msm/disp/
H A Dmdp_kms.c48 struct mdp_irq *handler, *n; local
53 list_for_each_entry_safe(handler, n, &mdp_kms->irq_list, node) {
54 if (handler->irqmask & status) {
56 handler->irq(handler, handler->irqmask & status);

Completed in 209 milliseconds

1234567891011>>