/linux-4.4.14/net/ipv4/ |
D | xfrm4_protocol.c | 44 #define for_each_protocol_rcu(head, handler) \ argument 45 for (handler = rcu_dereference(head); \ 46 handler != NULL; \ 47 handler = rcu_dereference(handler->next)) \ 52 struct xfrm4_protocol *handler; in xfrm4_rcv_cb() local 58 for_each_protocol_rcu(*head, handler) in xfrm4_rcv_cb() 59 if ((ret = handler->cb_handler(skb, err)) <= 0) in xfrm4_rcv_cb() 70 struct xfrm4_protocol *handler; in xfrm4_rcv_encap() local 80 for_each_protocol_rcu(*head, handler) in xfrm4_rcv_encap() 81 if ((ret = handler->input_handler(skb, nexthdr, spi, encap_type)) != -EINVAL) in xfrm4_rcv_encap() [all …]
|
D | tunnel4.c | 26 int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family) in xfrm4_tunnel_register() argument 32 int priority = handler->priority; in xfrm4_tunnel_register() 46 handler->next = *pprev; in xfrm4_tunnel_register() 47 rcu_assign_pointer(*pprev, handler); in xfrm4_tunnel_register() 58 int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family) in xfrm4_tunnel_deregister() argument 70 if (t == handler) { in xfrm4_tunnel_deregister() 71 *pprev = handler->next; in xfrm4_tunnel_deregister() 85 #define for_each_tunnel_rcu(head, handler) \ argument 86 for (handler = rcu_dereference(head); \ 87 handler != NULL; \ [all …]
|
D | inet_diag.c | 64 static void inet_diag_unlock_handler(const struct inet_diag_handler *handler) in inet_diag_unlock_handler() argument 115 const struct inet_diag_handler *handler; in inet_sk_diag_fill() local 122 handler = inet_diag_table[req->sdiag_protocol]; in inet_sk_diag_fill() 123 BUG_ON(!handler); in inet_sk_diag_fill() 181 handler->idiag_get_info(sk, r, NULL); in inet_sk_diag_fill() 207 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) { in inet_sk_diag_fill() 209 handler->idiag_info_size); in inet_sk_diag_fill() 228 handler->idiag_get_info(sk, r, info); in inet_sk_diag_fill() 421 const struct inet_diag_handler *handler; in inet_diag_get_exact() local 424 handler = inet_diag_lock_handler(req->sdiag_protocol); in inet_diag_get_exact() [all …]
|
D | icmp.c | 194 bool (*handler)(struct sk_buff *skb); member 1047 success = icmp_pointers[icmph->type].handler(skb); in icmp_rcv() 1093 .handler = ping_rcv, 1096 .handler = icmp_discard, 1100 .handler = icmp_discard, 1104 .handler = icmp_unreach, 1108 .handler = icmp_unreach, 1112 .handler = icmp_redirect, 1116 .handler = icmp_discard, 1120 .handler = icmp_discard, [all …]
|
D | gre_demux.c | 78 if (!proto || !proto->handler) in gre_rcv() 80 ret = proto->handler(skb); in gre_rcv() 108 .handler = gre_rcv,
|
/linux-4.4.14/net/ipv6/ |
D | xfrm6_protocol.c | 44 #define for_each_protocol_rcu(head, handler) \ argument 45 for (handler = rcu_dereference(head); \ 46 handler != NULL; \ 47 handler = rcu_dereference(handler->next)) \ 52 struct xfrm6_protocol *handler; in xfrm6_rcv_cb() local 58 for_each_protocol_rcu(*proto_handlers(protocol), handler) in xfrm6_rcv_cb() 59 if ((ret = handler->cb_handler(skb, err)) <= 0) in xfrm6_rcv_cb() 69 struct xfrm6_protocol *handler; in xfrm6_esp_rcv() local 73 for_each_protocol_rcu(esp6_handlers, handler) in xfrm6_esp_rcv() 74 if ((ret = handler->handler(skb)) != -EINVAL) in xfrm6_esp_rcv() [all …]
|
D | tunnel6.c | 38 int xfrm6_tunnel_register(struct xfrm6_tunnel *handler, unsigned short family) in xfrm6_tunnel_register() argument 43 int priority = handler->priority; in xfrm6_tunnel_register() 57 handler->next = *pprev; in xfrm6_tunnel_register() 58 rcu_assign_pointer(*pprev, handler); in xfrm6_tunnel_register() 69 int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler, unsigned short family) in xfrm6_tunnel_deregister() argument 81 if (t == handler) { in xfrm6_tunnel_deregister() 82 *pprev = handler->next; in xfrm6_tunnel_deregister() 96 #define for_each_tunnel_rcu(head, handler) \ argument 97 for (handler = rcu_dereference(head); \ 98 handler != NULL; \ [all …]
|
D | xfrm6_mode_tunnel.c | 65 #define for_each_input_rcu(head, handler) \ argument 66 for (handler = rcu_dereference(head); \ 67 handler != NULL; \ 68 handler = rcu_dereference(handler->next))
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | evxface.c | 93 acpi_notify_handler handler, void *context) in acpi_install_notify_handler() argument 106 if ((!device) || (!handler) || (!handler_type) || in acpi_install_notify_handler() 126 if (acpi_gbl_global_notify[i].handler) { in acpi_install_notify_handler() 131 acpi_gbl_global_notify[i].handler = handler; in acpi_install_notify_handler() 181 if (handler_obj->notify.handler == handler) { in acpi_install_notify_handler() 201 handler_obj->notify.handler = handler; in acpi_install_notify_handler() 246 u32 handler_type, acpi_notify_handler handler) in ACPI_EXPORT_SYMBOL() 260 if ((!device) || (!handler) || (!handler_type) || in ACPI_EXPORT_SYMBOL() 276 if (!acpi_gbl_global_notify[i].handler || in ACPI_EXPORT_SYMBOL() 277 (acpi_gbl_global_notify[i].handler != in ACPI_EXPORT_SYMBOL() [all …]
|
D | evhandler.c | 162 handler_obj = obj_desc->device.handler; in acpi_ev_has_default_handler() 250 next_handler_obj = obj_desc->device.handler; in acpi_ev_install_handler() 330 acpi_adr_space_handler handler, in acpi_ev_install_space_handler() argument 352 if (handler == ACPI_DEFAULT_HANDLER) { in acpi_ev_install_space_handler() 358 handler = acpi_ex_system_memory_space_handler; in acpi_ev_install_space_handler() 364 handler = acpi_ex_system_io_space_handler; in acpi_ev_install_space_handler() 370 handler = acpi_ex_pci_config_space_handler; in acpi_ev_install_space_handler() 376 handler = acpi_ex_cmos_space_handler; in acpi_ev_install_space_handler() 382 handler = acpi_ex_pci_bar_space_handler; in acpi_ev_install_space_handler() 388 handler = acpi_ex_data_table_space_handler; in acpi_ev_install_space_handler() [all …]
|
D | evxfregn.c | 79 acpi_adr_space_handler handler, in acpi_install_address_space_handler() argument 109 acpi_ev_install_space_handler(node, space_id, handler, setup, in acpi_install_address_space_handler() 174 acpi_adr_space_handler handler) in ACPI_EXPORT_SYMBOL() 218 handler_obj = obj_desc->device.handler; in ACPI_EXPORT_SYMBOL() 219 last_obj_ptr = &obj_desc->device.handler; in ACPI_EXPORT_SYMBOL() 228 if (handler_obj->address_space.handler != handler) { in ACPI_EXPORT_SYMBOL() 238 handler_obj, handler, in ACPI_EXPORT_SYMBOL() 285 handler, acpi_ut_get_region_name(space_id), space_id, in ACPI_EXPORT_SYMBOL()
|
D | nsobject.c | 346 acpi_object_handler handler, void *data) in acpi_ns_attach_data() argument 358 (obj_desc->data.handler == handler)) { in acpi_ns_attach_data() 373 data_desc->data.handler = handler; in acpi_ns_attach_data() 403 acpi_object_handler handler) in acpi_ns_detach_data() argument 412 (obj_desc->data.handler == handler)) { in acpi_ns_detach_data() 448 acpi_object_handler handler, void **data) in acpi_ns_get_attached_data() argument 455 (obj_desc->data.handler == handler)) { in acpi_ns_get_attached_data()
|
D | evregion.c | 139 acpi_adr_space_handler handler; in acpi_ev_address_space_dispatch() local 156 handler_desc = region_obj->region.handler; in acpi_ev_address_space_dispatch() 234 handler = handler_desc->address_space.handler; in acpi_ev_address_space_dispatch() 274 ®ion_obj->region.handler->address_space, handler, in acpi_ev_address_space_dispatch() 291 status = handler(function, address, bit_width, value, context, in acpi_ev_address_space_dispatch() 349 handler_obj = region_obj->region.handler; in acpi_ev_detach_region() 448 region_obj->region.handler = NULL; in acpi_ev_detach_region() 515 if (region_obj->region.handler) { in acpi_ev_attach_region() 519 region_obj->region.handler = handler_obj; in acpi_ev_attach_region()
|
D | nsxfeval.c | 844 acpi_object_handler handler, void *data) in ACPI_EXPORT_SYMBOL() 851 if (!obj_handle || !handler || !data) { in ACPI_EXPORT_SYMBOL() 868 status = acpi_ns_attach_data(node, handler, data); in ACPI_EXPORT_SYMBOL() 890 acpi_detach_data(acpi_handle obj_handle, acpi_object_handler handler) in ACPI_EXPORT_SYMBOL() 897 if (!obj_handle || !handler) { in ACPI_EXPORT_SYMBOL() 914 status = acpi_ns_detach_data(node, handler); in ACPI_EXPORT_SYMBOL() 939 acpi_get_data_full(acpi_handle obj_handle, acpi_object_handler handler, in ACPI_EXPORT_SYMBOL() 947 if (!obj_handle || !handler || !data) { in ACPI_EXPORT_SYMBOL() 964 status = acpi_ns_get_attached_data(node, handler, data); in ACPI_EXPORT_SYMBOL() 990 acpi_get_data(acpi_handle obj_handle, acpi_object_handler handler, void **data) in ACPI_EXPORT_SYMBOL() [all …]
|
D | dbdisply.c | 96 void *handler; member 102 {&acpi_gbl_global_notify[0].handler, "System Notifications"}, 103 {&acpi_gbl_global_notify[1].handler, "Device Notifications"}, 954 handler_obj = obj_desc->device.handler; in acpi_db_display_handlers() 970 handler); in acpi_db_display_handlers() 987 handler_obj = obj_desc->device.handler; in acpi_db_display_handlers() 1001 handler); in acpi_db_display_handlers() 1016 if (acpi_gbl_fixed_event_handlers[i].handler) { in acpi_db_display_handlers() 1019 handler); in acpi_db_display_handlers() 1035 if (acpi_gbl_handler_list[i].handler) { in acpi_db_display_handlers() [all …]
|
D | acobject.h | 168 union acpi_operand_object *handler; /* Handler for region access */ member 183 union acpi_operand_object *handler; member 211 union acpi_operand_object *handler; /* Handler for Address space */ 301 acpi_notify_handler handler; /* Handler address */ member 309 acpi_adr_space_handler handler; member 375 ACPI_OBJECT_COMMON_HEADER acpi_object_handler handler; member
|
D | tbxface.c | 409 acpi_install_table_handler(acpi_table_handler handler, void *context) in ACPI_EXPORT_SYMBOL() 415 if (!handler) { in ACPI_EXPORT_SYMBOL() 433 acpi_gbl_table_handler = handler; in ACPI_EXPORT_SYMBOL() 455 acpi_status acpi_remove_table_handler(acpi_table_handler handler) in ACPI_EXPORT_SYMBOL() 468 if (!handler || handler != acpi_gbl_table_handler) { in ACPI_EXPORT_SYMBOL()
|
D | evmisc.c | 141 if (!acpi_gbl_global_notify[handler_list_id].handler in acpi_ev_queue_notify_request() 204 if (info->notify.global->handler) { in acpi_ev_notify_dispatch() 205 info->notify.global->handler(info->notify.node, in acpi_ev_notify_dispatch() 214 handler_obj->notify.handler(info->notify.node, in acpi_ev_notify_dispatch()
|
D | utxface.c | 240 acpi_install_initialization_handler(acpi_init_handler handler, u32 function) in ACPI_EXPORT_SYMBOL() 243 if (!handler) { in ACPI_EXPORT_SYMBOL() 251 acpi_gbl_init_handler = handler; in ACPI_EXPORT_SYMBOL() 384 acpi_status acpi_install_interface_handler(acpi_interface_handler handler) in ACPI_EXPORT_SYMBOL() 393 if (handler && acpi_gbl_interface_handler) { in ACPI_EXPORT_SYMBOL() 396 acpi_gbl_interface_handler = handler; in ACPI_EXPORT_SYMBOL()
|
D | evrgnini.c | 182 handler_obj = region_obj->region.handler; in acpi_ev_pci_config_region_setup() 534 region_obj->region.handler = NULL; in acpi_ev_initialize_region() 570 handler_obj = obj_desc->device.handler; in acpi_ev_initialize_region() 575 handler_obj = obj_desc->processor.handler; in acpi_ev_initialize_region() 580 handler_obj = obj_desc->thermal_zone.handler; in acpi_ev_initialize_region() 594 obj_desc->method.dispatch.handler; in acpi_ev_initialize_region()
|
D | evevent.c | 170 acpi_gbl_fixed_event_handlers[i].handler = NULL; in acpi_ev_fixed_event_initialize() 279 if (!acpi_gbl_fixed_event_handlers[event].handler) { in acpi_ev_fixed_event_dispatch() 294 handler) (acpi_gbl_fixed_event_handlers[event].context)); in acpi_ev_fixed_event_dispatch()
|
D | dbstats.c | 192 acpi_db_enumerate_object(obj_desc->device.handler); in acpi_db_enumerate_object() 205 acpi_db_enumerate_object(obj_desc->region.handler); in acpi_db_enumerate_object() 220 acpi_db_enumerate_object(obj_desc->processor.handler); in acpi_db_enumerate_object() 227 acpi_db_enumerate_object(obj_desc->thermal_zone.handler); in acpi_db_enumerate_object()
|
/linux-4.4.14/arch/arm/probes/uprobes/ |
D | actions-arm.c | 198 [PROBES_PRELOAD_IMM] = {.handler = probes_simulate_nop}, 199 [PROBES_PRELOAD_REG] = {.handler = probes_simulate_nop}, 200 [PROBES_BRANCH_IMM] = {.handler = simulate_blx1}, 201 [PROBES_MRS] = {.handler = simulate_mrs}, 202 [PROBES_BRANCH_REG] = {.handler = simulate_blx2bx}, 203 [PROBES_CLZ] = {.handler = probes_simulate_nop}, 204 [PROBES_SATURATING_ARITHMETIC] = {.handler = probes_simulate_nop}, 205 [PROBES_MUL1] = {.handler = probes_simulate_nop}, 206 [PROBES_MUL2] = {.handler = probes_simulate_nop}, 207 [PROBES_SWP] = {.handler = probes_simulate_nop}, [all …]
|
/linux-4.4.14/arch/arm/probes/kprobes/ |
D | actions-arm.c | 306 [PROBES_PRELOAD_IMM] = {.handler = probes_simulate_nop}, 307 [PROBES_PRELOAD_REG] = {.handler = probes_simulate_nop}, 308 [PROBES_BRANCH_IMM] = {.handler = simulate_blx1}, 309 [PROBES_MRS] = {.handler = simulate_mrs}, 310 [PROBES_BRANCH_REG] = {.handler = simulate_blx2bx}, 311 [PROBES_CLZ] = {.handler = emulate_rd12rm0_noflags_nopc}, 313 .handler = emulate_rd12rn16rm0_rwflags_nopc}, 314 [PROBES_MUL1] = {.handler = emulate_rdlo12rdhi16rn0rm8_rwflags_nopc}, 315 [PROBES_MUL2] = {.handler = emulate_rd16rn12rm0rs8_rwflags_nopc}, 316 [PROBES_SWP] = {.handler = emulate_rd12rn16rm0_rwflags_nopc}, [all …]
|
D | actions-thumb.c | 616 [PROBES_T16_ADD_SP] = {.handler = t16_simulate_add_sp_imm}, 617 [PROBES_T16_CBZ] = {.handler = t16_simulate_cbz}, 618 [PROBES_T16_SIGN_EXTEND] = {.handler = t16_emulate_loregs_rwflags}, 621 [PROBES_T16_SEV] = {.handler = probes_emulate_none}, 622 [PROBES_T16_WFE] = {.handler = probes_simulate_nop}, 624 [PROBES_T16_CMP] = {.handler = t16_emulate_loregs_rwflags}, 625 [PROBES_T16_ADDSUB] = {.handler = t16_emulate_loregs_noitrwflags}, 626 [PROBES_T16_LOGICAL] = {.handler = t16_emulate_loregs_noitrwflags}, 627 [PROBES_T16_LDR_LIT] = {.handler = t16_simulate_ldr_literal}, 628 [PROBES_T16_BLX] = {.handler = t16_simulate_bxblx}, [all …]
|
D | actions-common.c | 131 probes_insn_handler_t *handler = 0; in kprobe_decode_ldmstm() local 138 handler = emulate_generic_r0_12_noflags; in kprobe_decode_ldmstm() 144 handler = emulate_generic_r2_14_noflags; in kprobe_decode_ldmstm() 151 handler = emulate_ldm_r3_15; in kprobe_decode_ldmstm() 155 if (handler) { in kprobe_decode_ldmstm() 159 asi->insn_handler = handler; in kprobe_decode_ldmstm() 165 handler = is_ldm ? simulate_ldm1_pc : simulate_stm1_pc; in kprobe_decode_ldmstm() 167 handler = simulate_ldm1stm1; in kprobe_decode_ldmstm() 168 asi->insn_handler = handler; in kprobe_decode_ldmstm()
|
/linux-4.4.14/arch/powerpc/sysdev/ |
D | pmi.c | 41 struct list_head handler; member 114 struct pmi_handler *handler; in pmi_notify_handlers() local 117 list_for_each_entry(handler, &data->handler, node) { in pmi_notify_handlers() 118 pr_debug("pmi: notifying handler %p\n", handler); in pmi_notify_handlers() 119 if (handler->type == data->msg.type) in pmi_notify_handlers() 120 handler->handle_pmi_message(data->msg); in pmi_notify_handlers() 150 INIT_LIST_HEAD(&data->handler); in pmi_of_probe() 190 struct pmi_handler *handler, *tmp; in pmi_of_remove() local 197 list_for_each_entry_safe(handler, tmp, &data->handler, node) in pmi_of_remove() 198 list_del(&handler->node); in pmi_of_remove() [all …]
|
/linux-4.4.14/drivers/scsi/ |
D | scsi_dh.c | 140 sdev->handler = scsi_dh; in scsi_dh_handler_attach() 151 sdev->handler->detach(sdev); in scsi_dh_handler_detach() 152 sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name); in scsi_dh_handler_detach() 153 module_put(sdev->handler->module); in scsi_dh_handler_detach() 171 if (!sdev->handler) { in store_dh_state() 186 sdev->handler->name); in store_dh_state() 192 if (sdev->handler->activate) in store_dh_state() 193 err = sdev->handler->activate(sdev, NULL, NULL); in store_dh_state() 207 if (!sdev->handler) in show_dh_state() 210 return snprintf(buf, 20, "%s\n", sdev->handler->name); in show_dh_state() [all …]
|
/linux-4.4.14/include/linux/ |
D | sfi_acpi.h | 68 int (*handler)(struct acpi_table_header *)); 71 int (*handler)(struct acpi_table_header *)) in acpi_sfi_table_parse() 73 if (!acpi_table_parse(signature, handler)) in acpi_sfi_table_parse() 76 return sfi_acpi_table_parse(signature, NULL, NULL, handler); in acpi_sfi_table_parse() 81 int (*handler)(struct acpi_table_header *)) in sfi_acpi_table_parse() 87 int (*handler)(struct acpi_table_header *)) in acpi_sfi_table_parse() 89 return acpi_table_parse(signature, handler); in acpi_sfi_table_parse()
|
D | irqdesc.h | 184 irq_flow_handler_t handler) in irq_set_handler_locked() argument 188 desc->handle_irq = handler; in irq_set_handler_locked() 205 irq_flow_handler_t handler, const char *name) in irq_set_chip_handler_name_locked() argument 209 desc->handle_irq = handler; in irq_set_chip_handler_name_locked() 241 __irq_set_preflow_handler(unsigned int irq, irq_preflow_handler_t handler) in __irq_set_preflow_handler() argument 246 desc->preflow_handler = handler; in __irq_set_preflow_handler()
|
D | interrupt.h | 111 irq_handler_t handler; member 129 request_threaded_irq(unsigned int irq, irq_handler_t handler, 134 request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, in request_irq() argument 137 return request_threaded_irq(irq, handler, NULL, flags, name, dev); in request_irq() 141 request_any_context_irq(unsigned int irq, irq_handler_t handler, 145 request_percpu_irq(unsigned int irq, irq_handler_t handler, 155 irq_handler_t handler, irq_handler_t thread_fn, 160 devm_request_irq(struct device *dev, unsigned int irq, irq_handler_t handler, in devm_request_irq() argument 163 return devm_request_threaded_irq(dev, irq, handler, NULL, irqflags, in devm_request_irq() 169 irq_handler_t handler, unsigned long irqflags,
|
D | genl_magic_struct.h | 102 #define GENL_doit(handler) \ argument 103 .doit = handler, \ 105 #define GENL_dumpit(handler) \ argument 106 .dumpit = handler, \ 127 #define GENL_op(op_name, op_num, handler, tla_list) \ argument 138 #define GENL_op(op_name, op_num, handler, attr_list) argument 177 #define GENL_op(op_name, op_num, handler, attr_list) \ argument 193 #define GENL_op(op_name, op_num, handler, attr_list) argument
|
D | inet_diag.h | 46 extern int inet_diag_register(const struct inet_diag_handler *handler); 47 extern void inet_diag_unregister(const struct inet_diag_handler *handler);
|
D | genl_magic_func.h | 18 #define GENL_op(op_name, op_num, handler, tla_list) argument 225 #define GENL_op(op_name, op_num, handler, tla_list) \ in CONCAT_() argument 241 #define GENL_op(op_name, op_num, handler, tla_list) \ argument 243 handler \ 254 #define GENL_op(op_name, op_num, handler, tla_list) argument 324 #define GENL_op(op_name, op_num, handler, tla_list) argument
|
D | iommu.h | 81 iommu_fault_handler_t handler; member 225 iommu_fault_handler_t handler, void *token); 305 if (domain->handler) in report_iommu_fault() 306 ret = domain->handler(domain, dev, iova, flags, in report_iommu_fault() 407 iommu_fault_handler_t handler, void *token) in iommu_set_fault_handler() argument
|
/linux-4.4.14/drivers/uwb/ |
D | uwbd.c | 97 uwbd_evt_handler_f handler; member 104 .handler = uwbd_evt_handle_rc_ie_rcv, 108 .handler = uwbd_evt_handle_rc_beacon, 112 .handler = uwbd_evt_handle_rc_beacon_size, 116 .handler = uwbd_evt_handle_rc_bpoie_change, 120 .handler = uwbd_evt_handle_rc_bp_slot_change, 124 .handler = uwbd_evt_handle_rc_drp_avail, 128 .handler = uwbd_evt_handle_rc_drp, 132 .handler = uwbd_evt_handle_rc_dev_addr_conflict, 156 .handler = uwbd_msg_handle_reset, [all …]
|
/linux-4.4.14/include/trace/events/ |
D | nmi.h | 12 TP_PROTO(void *handler, s64 delta_ns, int handled), 14 TP_ARGS(handler, delta_ns, handled), 17 __field( void *, handler ) 23 __entry->handler = handler; 29 __entry->handler,
|
/linux-4.4.14/arch/sh/drivers/dma/ |
D | dmabrg.c | 70 void (*handler)(void *); member 76 dmabrg_handlers[i].handler(dmabrg_handlers[i].data); in dmabrg_call_handler() 126 int dmabrg_request_irq(unsigned int dmairq, void(*handler)(void*), in dmabrg_request_irq() 129 if ((dmairq > 9) || !handler) in dmabrg_request_irq() 131 if (dmabrg_handlers[dmairq].handler) in dmabrg_request_irq() 134 dmabrg_handlers[dmairq].handler = handler; in dmabrg_request_irq() 146 dmabrg_handlers[dmairq].handler = NULL; in dmabrg_free_irq()
|
/linux-4.4.14/arch/m68k/atari/ |
D | stdma.c | 69 int stdma_try_lock(irq_handler_t handler, void *data) in stdma_try_lock() argument 80 stdma_isr = handler; in stdma_try_lock() 104 void stdma_lock(irq_handler_t handler, void *data) in stdma_lock() argument 109 wait_event(stdma_wait, stdma_try_lock(handler, data)); in stdma_lock() 148 int stdma_is_locked_by(irq_handler_t handler) in stdma_is_locked_by() argument 154 result = stdma_locked && (stdma_isr == handler); in stdma_is_locked_by()
|
/linux-4.4.14/arch/mips/lib/ |
D | memcpy.S | 111 #define EXC(insn, type, reg, addr, handler) \ argument 115 PTR 9b, handler; \ 124 PTR 9b, handler; \ 145 #define LOAD(reg, addr, handler) EXC(ld, LD_INSN, reg, addr, handler) argument 146 #define LOADL(reg, addr, handler) EXC(ldl, LD_INSN, reg, addr, handler) argument 147 #define LOADR(reg, addr, handler) EXC(ldr, LD_INSN, reg, addr, handler) argument 148 #define STOREL(reg, addr, handler) EXC(sdl, ST_INSN, reg, addr, handler) argument 149 #define STORER(reg, addr, handler) EXC(sdr, ST_INSN, reg, addr, handler) argument 150 #define STORE(reg, addr, handler) EXC(sd, ST_INSN, reg, addr, handler) argument 182 #define LOAD(reg, addr, handler) EXC(lw, LD_INSN, reg, addr, handler) argument [all …]
|
D | csum_partial.S | 358 #define EXC(insn, type, reg, addr, handler) \ argument 362 PTR 9b, handler; \ 371 PTR 9b, handler; \ 384 #define LOAD(reg, addr, handler) EXC(ld, LD_INSN, reg, addr, handler) argument 385 #define LOADBU(reg, addr, handler) EXC(lbu, LD_INSN, reg, addr, handler) argument 386 #define LOADL(reg, addr, handler) EXC(ldl, LD_INSN, reg, addr, handler) argument 387 #define LOADR(reg, addr, handler) EXC(ldr, LD_INSN, reg, addr, handler) argument 388 #define STOREB(reg, addr, handler) EXC(sb, ST_INSN, reg, addr, handler) argument 389 #define STOREL(reg, addr, handler) EXC(sdl, ST_INSN, reg, addr, handler) argument 390 #define STORER(reg, addr, handler) EXC(sdr, ST_INSN, reg, addr, handler) argument [all …]
|
D | strlen_user.S | 14 #define EX(insn,reg,addr,handler) \ argument 17 PTR 9b, handler; \
|
D | strnlen_user.S | 13 #define EX(insn,reg,addr,handler) \ argument 16 PTR 9b, handler; \
|
D | strncpy_user.S | 14 #define EX(insn,reg,addr,handler) \ argument 17 PTR 9b, handler; \
|
/linux-4.4.14/fs/btrfs/ |
D | props.c | 107 const struct prop_handler *handler; in __btrfs_set_prop() local 113 handler = find_prop_handler(name, NULL); in __btrfs_set_prop() 114 if (!handler) in __btrfs_set_prop() 118 ret = __btrfs_setxattr(trans, inode, handler->xattr_name, in __btrfs_set_prop() 123 ret = handler->apply(inode, NULL, 0); in __btrfs_set_prop() 129 ret = handler->validate(value, value_len); in __btrfs_set_prop() 132 ret = __btrfs_setxattr(trans, inode, handler->xattr_name, in __btrfs_set_prop() 136 ret = handler->apply(inode, value, value_len); in __btrfs_set_prop() 138 __btrfs_setxattr(trans, inode, handler->xattr_name, in __btrfs_set_prop() 210 const struct prop_handler *handler; in iterate_object_props() local [all …]
|
/linux-4.4.14/fs/ |
D | xattr.c | 686 #define for_each_xattr_handler(handlers, handler) \ argument 687 for ((handler) = *(handlers)++; \ 688 (handler) != NULL; \ 689 (handler) = *(handlers)++) 697 const struct xattr_handler *handler; in xattr_resolve_name() local 702 for_each_xattr_handler(handlers, handler) { in xattr_resolve_name() 703 const char *n = strcmp_prefix(*name, handler->prefix); in xattr_resolve_name() 709 return handler; in xattr_resolve_name() 718 const struct xattr_handler *handler; in generic_getxattr() local 720 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name); in generic_getxattr() [all …]
|
/linux-4.4.14/drivers/firewire/ |
D | core-transaction.c | 491 struct fw_address_handler *handler; in lookup_overlapping_address_handler() local 493 list_for_each_entry_rcu(handler, list, link) { in lookup_overlapping_address_handler() 494 if (handler->offset < offset + length && in lookup_overlapping_address_handler() 495 offset < handler->offset + handler->length) in lookup_overlapping_address_handler() 496 return handler; in lookup_overlapping_address_handler() 502 static bool is_enclosing_handler(struct fw_address_handler *handler, in is_enclosing_handler() argument 505 return handler->offset <= offset && in is_enclosing_handler() 506 offset + length <= handler->offset + handler->length; in is_enclosing_handler() 512 struct fw_address_handler *handler; in lookup_enclosing_address_handler() local 514 list_for_each_entry_rcu(handler, list, link) { in lookup_enclosing_address_handler() [all …]
|
/linux-4.4.14/drivers/tty/ |
D | sysrq.c | 94 .handler = sysrq_handle_loglevel, 107 .handler = sysrq_handle_SAK, 123 .handler = sysrq_handle_unraw, 141 .handler = sysrq_handle_crash, 154 .handler = sysrq_handle_reboot, 165 .handler = sysrq_handle_sync, 177 .handler = sysrq_handle_show_timers, 187 .handler = sysrq_handle_mountro, 200 .handler = sysrq_handle_showlocks, 251 .handler = sysrq_handle_showallcpus, [all …]
|
/linux-4.4.14/arch/m68k/68360/ |
D | commproc.c | 67 irq_handler_t handler; member 75 void cpm_install_handler(int vec, irq_handler_t handler, void *dev_id); 185 if (cpm_vecs[vec].handler != 0) in cpm_interrupt() 186 (*cpm_vecs[vec].handler)(cpm_vecs[vec].dev_id); in cpm_interrupt() 211 cpm_install_handler(int vec, irq_handler_t handler, void *dev_id) in cpm_install_handler() argument 214 request_irq(vec, handler, 0, "timer", dev_id); in cpm_install_handler() 232 cpm_vecs[vec].handler = NULL; in cpm_free_handler()
|
D | config.c | 63 .handler = hw_tick, 66 void hw_timer_init(irq_handler_t handler) in hw_timer_init() argument 99 timer_interrupt = handler; in hw_timer_init()
|
/linux-4.4.14/sound/firewire/dice/ |
D | dice-transaction.c | 313 struct fw_address_handler *handler = &dice->notification_handler; in snd_dice_transaction_destroy() local 315 if (handler->callback_data == NULL) in snd_dice_transaction_destroy() 320 fw_core_remove_address_handler(handler); in snd_dice_transaction_destroy() 321 handler->callback_data = NULL; in snd_dice_transaction_destroy() 326 struct fw_address_handler *handler = &dice->notification_handler; in snd_dice_transaction_reinit() local 328 if (handler->callback_data == NULL) in snd_dice_transaction_reinit() 336 struct fw_address_handler *handler = &dice->notification_handler; in snd_dice_transaction_init() local 353 handler->length = 4; in snd_dice_transaction_init() 354 handler->address_callback = dice_notification; in snd_dice_transaction_init() 355 handler->callback_data = dice; in snd_dice_transaction_init() [all …]
|
/linux-4.4.14/fs/squashfs/ |
D | xattr.c | 60 const struct xattr_handler *handler; in squashfs_listxattr() local 69 handler = squashfs_xattr_handler(le16_to_cpu(entry.type)); in squashfs_listxattr() 70 if (handler) in squashfs_listxattr() 71 prefix_size = handler->list(handler, d, buffer, rest, in squashfs_listxattr() 215 static size_t squashfs_xattr_handler_list(const struct xattr_handler *handler, in squashfs_xattr_handler_list() argument 220 int len = strlen(handler->prefix); in squashfs_xattr_handler_list() 223 memcpy(list, handler->prefix, len); in squashfs_xattr_handler_list() 227 static int squashfs_xattr_handler_get(const struct xattr_handler *handler, in squashfs_xattr_handler_get() argument 234 return squashfs_xattr_get(d_inode(d), handler->flags, name, in squashfs_xattr_handler_get() 251 static size_t squashfs_trusted_xattr_handler_list(const struct xattr_handler *handler, in squashfs_trusted_xattr_handler_list() argument [all …]
|
/linux-4.4.14/Documentation/RCU/ |
D | NMI-RCU.txt | 19 The dummy_nmi_callback() function is a "dummy" NMI handler that does 21 the NMI handler to take the default machine-specific action. 26 NMI handler. 45 count of NMIs. It then invokes the NMI handler stored in the nmi_callback 46 function pointer. If this handler returns zero, do_nmi() invokes the 67 The set_nmi_callback() function registers an NMI handler. Note that any 70 writes, the rcu_assign_pointer() ensures that the NMI handler sees the 78 This function unregisters an NMI handler, restoring the original 79 dummy_nmi_handler(). However, there may well be an NMI handler 81 up any data structures used by the old NMI handler until execution [all …]
|
/linux-4.4.14/drivers/acpi/ |
D | tables.c | 271 if (!proc[i].handler || in acpi_parse_entries_array() 272 proc[i].handler(entry, table_end)) in acpi_parse_entries_array() 305 acpi_tbl_entry_handler handler, in acpi_parse_entries() argument 311 .handler = handler, in acpi_parse_entries() 355 acpi_tbl_entry_handler handler, in acpi_table_parse_entries() argument 360 .handler = handler, in acpi_table_parse_entries() 369 acpi_tbl_entry_handler handler, unsigned int max_entries) in acpi_table_parse_madt() argument 373 handler, max_entries); in acpi_table_parse_madt() 386 int __init acpi_table_parse(char *id, acpi_tbl_table_handler handler) in acpi_table_parse() argument 394 if (!id || !handler) in acpi_table_parse() [all …]
|
D | ec.c | 167 struct acpi_ec_query_handler *handler; member 941 acpi_ec_get_query_handler(struct acpi_ec_query_handler *handler) in acpi_ec_get_query_handler() argument 943 if (handler) in acpi_ec_get_query_handler() 944 kref_get(&handler->kref); in acpi_ec_get_query_handler() 945 return handler; in acpi_ec_get_query_handler() 951 struct acpi_ec_query_handler *handler; in acpi_ec_get_query_handler_by_value() local 955 list_for_each_entry(handler, &ec->list, node) { in acpi_ec_get_query_handler_by_value() 956 if (value == handler->query_bit) { in acpi_ec_get_query_handler_by_value() 962 return found ? acpi_ec_get_query_handler(handler) : NULL; in acpi_ec_get_query_handler_by_value() 967 struct acpi_ec_query_handler *handler = in acpi_ec_query_handler_release() local [all …]
|
D | scan.c | 96 int acpi_scan_add_handler(struct acpi_scan_handler *handler) in acpi_scan_add_handler() argument 98 if (!handler) in acpi_scan_add_handler() 101 list_add_tail(&handler->list_node, &acpi_scan_handlers_list); in acpi_scan_add_handler() 105 int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler, in acpi_scan_add_handler_with_hotplug() argument 110 error = acpi_scan_add_handler(handler); in acpi_scan_add_handler_with_hotplug() 114 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name); in acpi_scan_add_handler_with_hotplug() 153 if (device->handler && !device->handler->hotplug.enabled) { in acpi_bus_offline() 264 if (device->handler && device->handler->hotplug.demand_offline in acpi_scan_hot_remove() 329 if (adev->handler) { in acpi_scan_device_check() 338 if (!adev->handler) { in acpi_scan_device_check() [all …]
|
D | glue.c | 320 else if (adev->handler && adev->handler->bind) in acpi_platform_notify() 321 adev->handler->bind(dev); in acpi_platform_notify() 349 else if (adev->handler && adev->handler->unbind) in acpi_platform_notify_remove() 350 adev->handler->unbind(dev); in acpi_platform_notify_remove()
|
/linux-4.4.14/arch/m68k/mac/ |
D | iop.c | 128 void (*handler)(struct iop_msg *); member 289 iop_listeners[IOP_NUM_SCC][i].handler = NULL; in iop_init() 291 iop_listeners[IOP_NUM_ISM][i].handler = NULL; in iop_init() 329 void (*handler)(struct iop_msg *), in iop_listen() 334 if (iop_listeners[iop_num][chan].handler && handler) return -EINVAL; in iop_listen() 336 iop_listeners[iop_num][chan].handler = handler; in iop_listen() 413 if (msg->handler) (*msg->handler)(msg); in iop_handle_send() 441 msg->handler = iop_listeners[iop_num][chan].handler; in iop_handle_recv() 454 if (msg->handler) { in iop_handle_recv() 455 (*msg->handler)(msg); in iop_handle_recv() [all …]
|
/linux-4.4.14/arch/mips/sgi-ip22/ |
D | ip22-int.c | 162 .handler = no_action, 168 .handler = no_action, 174 .handler = no_action, 180 .handler = no_action, 187 .handler = no_action, 309 struct irq_chip *handler; in arch_init_irq() local 312 handler = &ip22_local0_irq_type; in arch_init_irq() 314 handler = &ip22_local1_irq_type; in arch_init_irq() 316 handler = &ip22_local2_irq_type; in arch_init_irq() 318 handler = &ip22_local3_irq_type; in arch_init_irq() [all …]
|
/linux-4.4.14/fs/f2fs/ |
D | xattr.c | 28 static size_t f2fs_xattr_generic_list(const struct xattr_handler *handler, in f2fs_xattr_generic_list() argument 35 switch (handler->flags) { in f2fs_xattr_generic_list() 50 prefix_len = strlen(handler->prefix); in f2fs_xattr_generic_list() 53 memcpy(list, handler->prefix, prefix_len); in f2fs_xattr_generic_list() 60 static int f2fs_xattr_generic_get(const struct xattr_handler *handler, in f2fs_xattr_generic_get() argument 66 switch (handler->flags) { in f2fs_xattr_generic_get() 82 return f2fs_getxattr(d_inode(dentry), handler->flags, name, in f2fs_xattr_generic_get() 86 static int f2fs_xattr_generic_set(const struct xattr_handler *handler, in f2fs_xattr_generic_set() argument 92 switch (handler->flags) { in f2fs_xattr_generic_set() 109 return f2fs_setxattr(d_inode(dentry), handler->flags, name, in f2fs_xattr_generic_set() [all …]
|
/linux-4.4.14/arch/cris/arch-v32/mm/ |
D | mmu.S | 1 ; WARNING : The refill handler has been modified, see below !!! 37 ; Bus fault handler. Extracts relevant information and calls mm subsystem 39 .macro MMU_BUS_FAULT_HANDLER handler, mmu, we, ex 40 .globl \handler 41 .type \handler,"function" 42 \handler: 56 .size \handler, . - \handler 59 ; Refill handler. Three cases may occur: 82 .macro MMU_REFILL_HANDLER handler, mmu 88 .globl \handler [all …]
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | exception.c | 11 int bfin_request_exception(unsigned int exception, void (*handler)(void)) in bfin_request_exception() 23 ex_table[exception] = handler; in bfin_request_exception() 29 int bfin_free_exception(unsigned int exception, void (*handler)(void)) in bfin_free_exception() 38 if (curr_handler != handler) in bfin_free_exception()
|
/linux-4.4.14/Documentation/arm/ |
D | Interrupts | 37 SA1111 IRQ handler, SA1111 IRQs can hold off SMC9196 IRQs indefinitely. 43 to the Neponset handler, the "parent" is GPIO25, and the "children"d 84 the hardware IRQ if possible. If not, may call the handler 97 - per-IRQ handler 100 The handler can be one of the 3 standard handlers - "level", "edge" and 101 "simple", or your own specific handler if you need to do something special. 103 The "level" handler is what we currently have - its pretty simple. 107 "simple" handler is very basic, and does not perform any hardware 124 set_irq_handler(irq,handler) 126 Set the handler for this IRQ (level, edge, simple) [all …]
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | book3s_rtas.c | 107 void (*handler)(struct kvm_vcpu *vcpu, struct rtas_args *args); member 113 { .name = "ibm,set-xive", .handler = kvm_rtas_set_xive }, 114 { .name = "ibm,get-xive", .handler = kvm_rtas_get_xive }, 115 { .name = "ibm,int-off", .handler = kvm_rtas_int_off }, 116 { .name = "ibm,int-on", .handler = kvm_rtas_int_on }, 122 struct rtas_handler *handler; member 139 if (rtas_name_matches(d->handler->name, name)) { in rtas_token_undefine() 180 d->handler = h; in rtas_token_define() 240 d->handler->handler(vcpu, &args); in kvmppc_rtas_hcall()
|
/linux-4.4.14/drivers/media/rc/ |
D | rc-ir-raw.c | 37 struct ir_raw_handler *handler; in ir_raw_event_thread() local 61 list_for_each_entry(handler, &ir_raw_handler_list, list) in ir_raw_event_thread() 62 handler->decode(raw->dev, ev); in ir_raw_event_thread() 255 struct ir_raw_handler *handler; in ir_raw_event_register() local 283 list_for_each_entry(handler, &ir_raw_handler_list, list) in ir_raw_event_register() 284 if (handler->raw_register) in ir_raw_event_register() 285 handler->raw_register(dev); in ir_raw_event_register() 298 struct ir_raw_handler *handler; in ir_raw_event_unregister() local 307 list_for_each_entry(handler, &ir_raw_handler_list, list) in ir_raw_event_unregister() 308 if (handler->raw_unregister) in ir_raw_event_unregister() [all …]
|
/linux-4.4.14/drivers/gpu/vga/ |
D | vga_switcheroo.c | 143 const struct vga_switcheroo_handler *handler; member 164 vgasr_priv.registered_clients == 2 && vgasr_priv.handler; in vga_switcheroo_ready() 173 if (vgasr_priv.handler->init) in vga_switcheroo_enable() 174 vgasr_priv.handler->init(); in vga_switcheroo_enable() 179 ret = vgasr_priv.handler->get_client_id(client->pdev); in vga_switcheroo_enable() 198 int vga_switcheroo_register_handler(const struct vga_switcheroo_handler *handler) in vga_switcheroo_register_handler() argument 201 if (vgasr_priv.handler) { in vga_switcheroo_register_handler() 206 vgasr_priv.handler = handler; in vga_switcheroo_register_handler() 224 vgasr_priv.handler = NULL; in vga_switcheroo_unregister_handler() 480 if (vgasr_priv.handler->power_state) in vga_switchon() [all …]
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | mshyperv.c | 55 void hv_setup_vmbus_irq(void (*handler)(void)) in hv_setup_vmbus_irq() 57 vmbus_handler = handler; in hv_setup_vmbus_irq() 75 void hv_setup_kexec_handler(void (*handler)(void)) in hv_setup_kexec_handler() 77 hv_kexec_handler = handler; in hv_setup_kexec_handler() 87 void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs)) in hv_setup_crash_handler() 89 hv_crash_handler = handler; in hv_setup_crash_handler()
|
/linux-4.4.14/drivers/leds/ |
D | leds-sunfire.c | 116 set_handler handler; member 147 lp->brightness_set = types[i].handler; in sunfire_led_generic_probe() 179 .handler = clockboard_left_set, 183 .handler = clockboard_middle_set, 187 .handler = clockboard_right_set, 200 .handler = fhc_left_set, 204 .handler = fhc_middle_set, 208 .handler = fhc_right_set,
|
/linux-4.4.14/drivers/xen/ |
D | manage.c | 224 static struct shutdown_handler *handler; in shutdown_handler() local 241 for (handler = &handlers[0]; handler->command; handler++) { in shutdown_handler() 242 if (strcmp(str, handler->command) == 0) in shutdown_handler() 247 if (handler->cb) in shutdown_handler() 256 if (handler->cb) { in shutdown_handler() 257 handler->cb(); in shutdown_handler()
|
/linux-4.4.14/drivers/vfio/ |
D | virqfd.c | 53 if ((!virqfd->handler || in virqfd_wakeup() 54 virqfd->handler(virqfd->opaque, virqfd->data)) && in virqfd_wakeup() 108 int (*handler)(void *, void *), in vfio_virqfd_enable() 124 virqfd->handler = handler; in vfio_virqfd_enable() 176 if ((!handler || handler(opaque, data)) && thread) in vfio_virqfd_enable()
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/ |
D | mdp_kms.c | 59 struct mdp_irq *handler, *n; in mdp_dispatch_irqs() local 64 list_for_each_entry_safe(handler, n, &mdp_kms->irq_list, node) { in mdp_dispatch_irqs() 65 if (handler->irqmask & status) { in mdp_dispatch_irqs() 67 handler->irq(handler, handler->irqmask & status); in mdp_dispatch_irqs()
|
/linux-4.4.14/drivers/s390/cio/ |
D | crw.c | 30 int crw_register_handler(int rsc, crw_handler_t handler) in crw_register_handler() argument 40 crw_handlers[rsc] = handler; in crw_register_handler() 74 crw_handler_t handler; in crw_collect_info() local 122 handler = crw_handlers[crw[chain].rsc]; in crw_collect_info() 123 if (handler) in crw_collect_info() 124 handler(&crw[0], chain ? &crw[1] : NULL, 0); in crw_collect_info()
|
D | device_fsm.c | 543 if (cdev->handler) in ccw_device_verify_done() 544 cdev->handler(cdev, cdev->private->intparm, in ccw_device_verify_done() 763 if (cdev->handler) in ccw_device_call_handler() 764 cdev->handler(cdev, cdev->private->intparm, in ccw_device_call_handler() 795 if (cdev->handler) in ccw_device_irq() 796 cdev->handler (cdev, 0, irb); in ccw_device_irq() 833 else if (cdev->handler) in ccw_device_online_timeout() 834 cdev->handler(cdev, cdev->private->intparm, in ccw_device_online_timeout() 858 if (cdev->handler) in ccw_device_w4sense() 859 cdev->handler (cdev, 0, irb); in ccw_device_w4sense() [all …]
|
/linux-4.4.14/fs/reiserfs/ |
D | xattr.c | 743 #define for_each_xattr_handler(handlers, handler) \ argument 744 for ((handler) = *(handlers)++; \ 745 (handler) != NULL; \ 746 (handler) = *(handlers)++) 774 const struct xattr_handler *handler; in reiserfs_getxattr() local 776 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name); in reiserfs_getxattr() 778 if (!handler || get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1) in reiserfs_getxattr() 781 return handler->get(handler, dentry, name, buffer, size); in reiserfs_getxattr() 793 const struct xattr_handler *handler; in reiserfs_setxattr() local 795 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name); in reiserfs_setxattr() [all …]
|
D | xattr_user.c | 10 user_get(const struct xattr_handler *handler, struct dentry *dentry, in user_get() argument 22 user_set(const struct xattr_handler *handler, struct dentry *dentry, in user_set() argument 33 static size_t user_list(const struct xattr_handler *handler, in user_list() argument
|
D | xattr_trusted.c | 11 trusted_get(const struct xattr_handler *handler, struct dentry *dentry, in trusted_get() argument 24 trusted_set(const struct xattr_handler *handler, struct dentry *dentry, in trusted_set() argument 36 static size_t trusted_list(const struct xattr_handler *handler, in trusted_list() argument
|
D | xattr_security.c | 12 security_get(const struct xattr_handler *handler, struct dentry *dentry, in security_get() argument 25 security_set(const struct xattr_handler *handler, struct dentry *dentry, in security_set() argument 37 static size_t security_list(const struct xattr_handler *handler, in security_list() argument
|
/linux-4.4.14/net/wireless/ |
D | wext-priv.c | 139 iw_handler handler, struct net_device *dev, in ioctl_private_iw_point() argument 168 err = handler(dev, info, (union iwreq_data *) iwp, extra); in ioctl_private_iw_point() 189 iw_handler handler) in ioctl_private_call() argument 199 ret = handler(dev, info, &(iwr->u), (char *) &(iwr->u)); in ioctl_private_call() 202 handler, dev, info, extra_size); in ioctl_private_call() 215 iw_handler handler) in compat_private_call() argument 225 ret = handler(dev, info, &(iwr->u), (char *) &(iwr->u)); in compat_private_call() 236 handler, dev, info, extra_size); in compat_private_call()
|
D | wext-core.c | 717 iw_handler handler, struct net_device *dev, in ioctl_standard_iw_point() argument 837 err = handler(dev, info, (union iwreq_data *) iwp, extra); in ioctl_standard_iw_point() 922 iw_handler handler; in wireless_process_ioctl() local 949 handler = get_handler(dev, cmd); in wireless_process_ioctl() 950 if (handler) { in wireless_process_ioctl() 953 return standard(dev, iwr, cmd, info, handler); in wireless_process_ioctl() 955 return private(dev, iwr, cmd, info, handler); in wireless_process_ioctl() 1025 iw_handler handler) in ioctl_standard_call() argument 1039 ret = handler(dev, info, &(iwr->u), NULL); in ioctl_standard_call() 1047 handler, dev, info); in ioctl_standard_call() [all …]
|
/linux-4.4.14/include/net/iucv/ |
D | iucv.h | 99 struct iucv_handler *handler; member 201 int iucv_register(struct iucv_handler *handler, int smp); 258 int iucv_path_accept(struct iucv_path *path, struct iucv_handler *handler, 276 int iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler, 481 int (*path_accept)(struct iucv_path *path, struct iucv_handler *handler, 484 struct iucv_handler *handler, 489 int (*iucv_register)(struct iucv_handler *handler, int smp); 490 void (*iucv_unregister)(struct iucv_handler *handler, int smp);
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-restart.txt | 2 handler. 6 handler. If the optional properties 'open-source' is not found, the GPIO line 10 When the system is restarted, the restart handler will be invoked in 18 restart handler completes allowing other restart handlers to be attempted. 33 0: Restart handler of last resort, with limited restart 35 128: Default restart handler; use if no other restart handler is 38 255: Highest priority restart handler, will preempt all other
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | fimc-isp.c | 694 struct v4l2_ctrl_handler *handler = &isp->ctrls.handler; in fimc_isp_subdev_create() local 716 v4l2_ctrl_handler_init(handler, 20); in fimc_isp_subdev_create() 718 ctrls->saturation = v4l2_ctrl_new_std(handler, ops, V4L2_CID_SATURATION, in fimc_isp_subdev_create() 720 ctrls->brightness = v4l2_ctrl_new_std(handler, ops, V4L2_CID_BRIGHTNESS, in fimc_isp_subdev_create() 722 ctrls->contrast = v4l2_ctrl_new_std(handler, ops, V4L2_CID_CONTRAST, in fimc_isp_subdev_create() 724 ctrls->sharpness = v4l2_ctrl_new_std(handler, ops, V4L2_CID_SHARPNESS, in fimc_isp_subdev_create() 726 ctrls->hue = v4l2_ctrl_new_std(handler, ops, V4L2_CID_HUE, in fimc_isp_subdev_create() 729 ctrls->auto_wb = v4l2_ctrl_new_std_menu(handler, ops, in fimc_isp_subdev_create() 733 ctrls->exposure = v4l2_ctrl_new_std(handler, ops, in fimc_isp_subdev_create() 737 ctrls->exp_metering = v4l2_ctrl_new_std_menu(handler, ops, in fimc_isp_subdev_create() [all …]
|
D | fimc-isp.h | 70 struct v4l2_ctrl_handler handler; member 184 container_of(ctrl->handler, struct fimc_isp, ctrls.handler)
|
D | fimc-core.c | 529 container_of((__ctrl)->handler, struct fimc_ctx, ctrls.handler) 601 struct v4l2_ctrl_handler *handler = &ctrls->handler; in fimc_ctrls_create() local 606 v4l2_ctrl_handler_init(handler, 6); in fimc_ctrls_create() 608 ctrls->rotate = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 610 ctrls->hflip = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 612 ctrls->vflip = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 616 ctrls->alpha = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 622 ctrls->colorfx = v4l2_ctrl_new_std_menu(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 626 ctrls->colorfx_cbcr = v4l2_ctrl_new_std(handler, &fimc_ctrl_ops, in fimc_ctrls_create() 631 if (!handler->error) { in fimc_ctrls_create() [all …]
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | kexec.h | 81 extern int crash_shutdown_register(crash_shutdown_t handler); 82 extern int crash_shutdown_unregister(crash_shutdown_t handler); 104 static inline int crash_shutdown_register(crash_shutdown_t handler) in crash_shutdown_register() argument 109 static inline int crash_shutdown_unregister(crash_shutdown_t handler) in crash_shutdown_unregister() argument
|
/linux-4.4.14/arch/xtensa/kernel/ |
D | traps.c | 87 void* handler; member 342 static void set_handler(int idx, void *handler) in set_handler() argument 347 per_cpu(exc_table, cpu)[idx] = (unsigned long)handler; in set_handler() 352 void * __init trap_set_handler(int cause, void *handler) in trap_set_handler() argument 356 set_handler(EXC_TABLE_DEFAULT / 4 + cause, handler); in trap_set_handler() 398 void *handler = dispatch_init_table[i].handler; in trap_init() local 401 set_handler (EXC_TABLE_DEFAULT/4 + cause, handler); in trap_init() 403 set_handler (EXC_TABLE_FAST_USER/4 + cause, handler); in trap_init() 405 set_handler (EXC_TABLE_FAST_KERNEL/4 + cause, handler); in trap_init()
|
/linux-4.4.14/Documentation/usb/ |
D | dwc3.txt | 6 - Convert interrupt handler to per-ep-thread-irq 21 - the interrupt handler is split into the following pieces: 22 - primary handler of the device 27 - threaded handler of the device 30 - primary handler of the EP-interrupt 38 - threaded handler of the EP-interrupt
|
D | URB.txt | 27 - Each URB has a completion handler, which is called after the action 29 context-pointer for passing information to the completion handler. 109 the desired transfer length, the completion handler, and its context. 158 returns; you must still wait for the completion handler to be called. 165 until after the URB has been returned and the completion handler 167 that if the completion handler or anyone else tries to resubmit it 172 time, and the completion handler may free the URB. If this happens 179 completion handler, the handler must not take any lock that is held 191 by the completion handler. 194 1.7. What about the completion handler? [all …]
|
/linux-4.4.14/net/llc/ |
D | llc_input.c | 42 void llc_add_pack(int type, void (*handler)(struct llc_sap *sap, in llc_add_pack() 47 llc_type_handlers[type - 1] = handler; in llc_add_pack() 57 void llc_set_station_handler(void (*handler)(struct sk_buff *skb)) in llc_set_station_handler() 60 if (handler) in llc_set_station_handler() 63 llc_station_handler = handler; in llc_set_station_handler() 65 if (!handler) in llc_set_station_handler()
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_hw_ct.c | 128 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_all; in bfa_hwct_msix_ctrl_install() 130 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_lpu_err; in bfa_hwct_msix_ctrl_install() 143 bfa->msix.handler[i] = bfa_msix_all; in bfa_hwct_msix_queue_install() 148 bfa->msix.handler[i] = bfa_msix_reqq; in bfa_hwct_msix_queue_install() 151 bfa->msix.handler[i] = bfa_msix_rspq; in bfa_hwct_msix_queue_install() 160 bfa->msix.handler[i] = bfa_hwct_msix_dummy; in bfa_hwct_msix_uninstall()
|
D | bfa_hw_cb.c | 133 bfa->msix.handler[i] = bfa_msix_all; in bfa_hwcb_msix_ctrl_install() 138 bfa->msix.handler[i] = bfa_msix_lpu_err; in bfa_hwcb_msix_ctrl_install() 151 bfa->msix.handler[i] = bfa_msix_all; in bfa_hwcb_msix_queue_install() 156 bfa->msix.handler[i] = bfa_msix_reqq; in bfa_hwcb_msix_queue_install() 159 bfa->msix.handler[i] = bfa_msix_rspq; in bfa_hwcb_msix_queue_install() 168 bfa->msix.handler[i] = bfa_hwcb_msix_dummy; in bfa_hwcb_msix_uninstall()
|
/linux-4.4.14/drivers/vfio/platform/ |
D | vfio_platform_irq.c | 181 int fd, irq_handler_t handler) in vfio_set_trigger() argument 212 ret = request_irq(irq->hwirq, handler, 0, irq->name, irq); in vfio_set_trigger() 232 irq_handler_t handler; in vfio_platform_set_irq_trigger() local 235 handler = vfio_automasked_irq_handler; in vfio_platform_set_irq_trigger() 237 handler = vfio_irq_handler; in vfio_platform_set_irq_trigger() 240 return vfio_set_trigger(vdev, index, -1, handler); in vfio_platform_set_irq_trigger() 248 return vfio_set_trigger(vdev, index, fd, handler); in vfio_platform_set_irq_trigger() 252 handler(irq->hwirq, irq); in vfio_platform_set_irq_trigger() 258 handler(irq->hwirq, irq); in vfio_platform_set_irq_trigger()
|
/linux-4.4.14/arch/s390/kernel/ |
D | irq.c | 195 ext_int_handler_t handler; member 211 int register_external_irq(u16 code, ext_int_handler_t handler) in register_external_irq() argument 221 p->handler = handler; in register_external_irq() 231 int unregister_external_irq(u16 code, ext_int_handler_t handler) in unregister_external_irq() argument 239 if (p->code == code && p->handler == handler) { in unregister_external_irq() 265 p->handler(ext_code, regs->int_parm, regs->int_parm_long); in do_ext_interrupt() 273 .handler = do_ext_interrupt,
|
/linux-4.4.14/net/iucv/ |
D | iucv.c | 781 int iucv_register(struct iucv_handler *handler, int smp) in iucv_register() argument 796 INIT_LIST_HEAD(&handler->paths); in iucv_register() 799 list_add_tail(&handler->list, &iucv_handler_list); in iucv_register() 815 void iucv_unregister(struct iucv_handler *handler, int smp) in iucv_unregister() argument 822 list_del_init(&handler->list); in iucv_unregister() 824 list_for_each_entry_safe(p, n, &handler->paths, list) { in iucv_unregister() 878 int iucv_path_accept(struct iucv_path *path, struct iucv_handler *handler, in iucv_path_accept() argument 925 int iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler, in iucv_path_connect() argument 962 path->handler = handler; in iucv_path_connect() 964 list_add_tail(&path->list, &handler->paths); in iucv_path_connect() [all …]
|
/linux-4.4.14/kernel/time/ |
D | tick-oneshot.c | 65 void (*handler)(struct clock_event_device *), in tick_setup_oneshot() 68 newdev->event_handler = handler; in tick_setup_oneshot() 76 int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *)) in tick_switch_to_oneshot() 99 dev->event_handler = handler; in tick_switch_to_oneshot()
|
D | tick-internal.h | 102 void (*handler)(struct clock_event_device *), 106 extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *)); 116 void (*handler)(struct clock_event_device *), in tick_setup_oneshot()
|
/linux-4.4.14/drivers/char/ipmi/ |
D | Kconfig | 6 tristate 'IPMI top-level message handler' 9 This enables the central IPMI message handler, required for IPMI 24 When a panic occurs, this will cause the IPMI message handler to 26 registered with the message handler. 32 When a panic occurs, this will cause the IPMI message handler to 43 This provides an IOCTL interface to the IPMI message handler so 47 tristate 'IPMI System Interface handler' 66 tristate 'IPMI SMBus handler (SSIF)'
|
/linux-4.4.14/arch/x86/include/asm/ |
D | mshyperv.h | 21 void hv_setup_vmbus_irq(void (*handler)(void)); 24 void hv_setup_kexec_handler(void (*handler)(void)); 26 void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs));
|
D | nmi.h | 41 nmi_handler_t handler; member 51 .handler = (fn), \
|
D | hpet.h | 101 extern int hpet_register_irq_handler(rtc_irq_handler handler); 102 extern void hpet_unregister_irq_handler(rtc_irq_handler handler);
|
/linux-4.4.14/arch/microblaze/kernel/ |
D | unwind.c | 202 const struct trap_handler_info *handler = in microblaze_unwind_inner() local 226 for (; handler->start_addr; ++handler) { in microblaze_unwind_inner() 227 if ((return_to >= handler->start_addr) in microblaze_unwind_inner() 228 && (return_to <= handler->end_addr)) { in microblaze_unwind_inner() 230 pr_info("%s\n", handler->trap_name); in microblaze_unwind_inner()
|
/linux-4.4.14/drivers/input/ |
D | input.c | 99 struct input_handler *handler = handle->handler; in input_to_handler() local 103 if (handler->filter) { in input_to_handler() 105 if (handler->filter(handle, v->type, v->code, v->value)) in input_to_handler() 117 if (handler->events) in input_to_handler() 118 handler->events(handle, vals, count); in input_to_handler() 119 else if (handler->event) in input_to_handler() 121 handler->event(handle, v->type, v->code, v->value); in input_to_handler() 556 if (handle->open && handle->handler->start) in __input_release_device() 557 handle->handler->start(handle); in __input_release_device() 937 static const struct input_device_id *input_match_device(struct input_handler *handler, in input_match_device() argument [all …]
|
D | apm-power.c | 52 static int apmpower_connect(struct input_handler *handler, in apmpower_connect() argument 64 handle->handler = handler; in apmpower_connect()
|
D | evbug.c | 47 static int evbug_connect(struct input_handler *handler, struct input_dev *dev, in evbug_connect() argument 58 handle->handler = handler; in evbug_connect()
|
/linux-4.4.14/include/acpi/ |
D | acpixf.h | 463 handler, void *context)) 466 handler)) 495 acpi_object_handler handler, 499 acpi_object_handler handler)) 502 acpi_object_handler handler, 552 (acpi_init_handler handler, u32 function)) 562 (acpi_gbl_event_handler handler, 568 handler, 574 handler)) 600 handler, [all …]
|
/linux-4.4.14/drivers/mfd/ |
D | pcf50633-irq.c | 25 void (*handler) (int, void *), void *data) in pcf50633_register_irq() 27 if (irq < 0 || irq >= PCF50633_NUM_IRQ || !handler) in pcf50633_register_irq() 30 if (WARN_ON(pcf->irq_handler[irq].handler)) in pcf50633_register_irq() 34 pcf->irq_handler[irq].handler = handler; in pcf50633_register_irq() 48 pcf->irq_handler[irq].handler = NULL; in pcf50633_free_irq() 107 if (pcf->irq_handler[irq].handler) in pcf50633_irq_call_handler() 108 pcf->irq_handler[irq].handler(irq, pcf->irq_handler[irq].data); in pcf50633_irq_call_handler()
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | fskeleton.S | 71 | is present. The routine below should point to the operating system handler 83 bral trap | jump to trap handler 90 | is present. The routine below should point to the operating system handler 102 bral trap | jump to trap handler 108 | is present. The routine below should point to the operating system handler 121 bral trap | jump to trap handler 127 | is present. The routine below should point to the operating system handler 140 bral trap | jump to trap handler 146 | is present. The routine below should point to the operating system handler 159 bral trap | jump to trap handler [all …]
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
D | Kconfig | 44 bool "Lock the TLB handler in L2" 51 bool "Lock the exception handler in L2" 55 Lock the low level exception handler into L2. 58 bool "Lock the interrupt handler in L2" 62 Lock the low level interrupt handler into L2. 65 bool "Lock the 2nd level interrupt handler in L2" 69 Lock the 2nd level interrupt handler in L2.
|
/linux-4.4.14/drivers/extcon/ |
D | extcon-adc-jack.c | 49 struct delayed_work handler; member 58 handler); in adc_jack_handler() 89 &data->handler, data->handling_delay); in adc_jack_irq_thread() 132 INIT_DEFERRABLE_WORK(&data->handler, adc_jack_handler); in adc_jack_probe() 162 cancel_work_sync(&data->handler.work); in adc_jack_remove()
|
/linux-4.4.14/kernel/irq/ |
D | devres.c | 48 irq_handler_t handler, irq_handler_t thread_fn, in devm_request_threaded_irq() argument 60 rc = request_threaded_irq(irq, handler, thread_fn, irqflags, devname, in devm_request_threaded_irq() 95 irq_handler_t handler, unsigned long irqflags, in devm_request_any_context_irq() argument 106 rc = request_any_context_irq(irq, handler, irqflags, devname, dev_id); in devm_request_any_context_irq()
|
D | generic-chip.c | 207 void __iomem *reg_base, irq_flow_handler_t handler) in irq_init_generic_chip() argument 214 gc->chip_types->handler = handler; in irq_init_generic_chip() 230 void __iomem *reg_base, irq_flow_handler_t handler) in irq_alloc_generic_chip() argument 238 handler); in irq_alloc_generic_chip() 275 irq_flow_handler_t handler, in irq_alloc_domain_generic_chips() argument 312 NULL, handler); in irq_alloc_domain_generic_chips() 408 irq_domain_set_info(d, virq, hw_irq, chip, gc, ct->handler, NULL, NULL); in irq_map_generic_chip() 461 irq_set_chip_and_handler(i, chip, ct->handler); in irq_setup_generic_chip() 485 irq_data_to_desc(d)->handle_irq = ct->handler; in irq_setup_alt_chip()
|
D | manage.c | 766 action->handler == irq_forced_secondary_handler) in irq_finalize_oneshot() 1022 if (new->handler != irq_default_primary_handler && new->thread_fn) { in irq_setup_forced_threading() 1027 new->secondary->handler = irq_forced_secondary_handler; in irq_setup_forced_threading() 1035 new->thread_fn = new->handler; in irq_setup_forced_threading() 1036 new->handler = irq_default_primary_handler; in irq_setup_forced_threading() 1136 new->handler = irq_nested_primary_handler; in __setup_irq() 1252 } else if (new->handler == irq_default_primary_handler && in __setup_irq() 1497 action->handler(irq, dev_id); in __free_irq() 1604 int request_threaded_irq(unsigned int irq, irq_handler_t handler, in request_threaded_irq() argument 1634 if (!handler) { in request_threaded_irq() [all …]
|
D | debug.h | 22 printk("->action->handler(): %p, ", desc->action->handler); in print_irq_desc() 23 print_symbol("%s\n", (unsigned long)desc->action->handler); in print_irq_desc()
|
/linux-4.4.14/arch/m68k/coldfire/ |
D | sltimers.c | 55 .handler = mcfslt_profile_tick, 97 .handler = mcfslt_tick, 126 void hw_timer_init(irq_handler_t handler) in hw_timer_init() argument 141 timer_interrupt = handler; in hw_timer_init()
|
D | timers.c | 87 .handler = mcftmr_tick, 118 void hw_timer_init(irq_handler_t handler) in hw_timer_init() argument 134 timer_interrupt = handler; in hw_timer_init() 175 .handler = coldfire_profile_tick,
|
/linux-4.4.14/include/xen/ |
D | events.h | 17 irq_handler_t handler, 22 irq_handler_t handler, 27 irq_handler_t handler, 35 irq_handler_t handler,
|
/linux-4.4.14/arch/mips/kernel/ |
D | cpu-bugs64.c | 187 void *handler; in check_daddi() local 193 handler = set_except_vector(12, handle_daddi_ov); in check_daddi() 217 set_except_vector(12, handler); in check_daddi() 228 handler = set_except_vector(12, handle_daddi_ov); in check_daddi() 235 set_except_vector(12, handler); in check_daddi()
|
/linux-4.4.14/Documentation/acpi/ |
D | scan_handlers.txt | 42 where ids is the list of IDs of device nodes the given handler is supposed to 46 unregistration of device nodes the handler attached to previously. 50 to match a scan handler against each of them using the ids arrays of the 51 available scan handlers. If a matching scan handler is found, its .attach() 53 that means that the handler has claimed the device node and is now responsible 56 The device node's handler field is then populated with the address of the scan 57 handler that has claimed it. 60 interesting to the given scan handler and may be matched against the next scan 61 handler in the list. If it returns a (negative) error code, that means that 72 handler as an argument. The order in which scan handlers are added to the list
|
/linux-4.4.14/arch/frv/kernel/ |
D | irq-mb93091.c | 109 .handler = fpga_interrupt, 115 .handler = fpga_interrupt, 121 .handler = fpga_interrupt, 127 .handler = fpga_interrupt,
|
D | entry-table.S | 33 # (4) The exception handler vector table 36 # exception processing. The prologue then jumps to the handler in this 71 # exception handler jump table 89 # handler declaration for a software or program interrupt 108 # handler declaration for a maskable external interrupt 129 # handler declaration for an NMI external interrupt 148 # handler declaration for an MMU only software or program interrupt
|
D | dma.c | 34 dma_irq_handler_t handler; member 129 return channel->handler(channel - frv_dma_channels, in dma_irq_handler() 172 dma_irq_handler_t handler, in frv_dma_open() argument 209 channel->handler = handler; in frv_dma_open()
|
/linux-4.4.14/fs/9p/ |
D | acl.c | 215 static int v9fs_xattr_get_acl(const struct xattr_handler *handler, in v9fs_xattr_get_acl() argument 231 return v9fs_xattr_get(dentry, handler->prefix, buffer, size); in v9fs_xattr_get_acl() 233 acl = v9fs_get_cached_acl(d_inode(dentry), handler->flags); in v9fs_xattr_get_acl() 244 static int v9fs_xattr_set_acl(const struct xattr_handler *handler, in v9fs_xattr_set_acl() argument 262 return v9fs_xattr_set(dentry, handler->prefix, value, size, in v9fs_xattr_set_acl() 282 switch (handler->flags) { in v9fs_xattr_set_acl() 322 retval = v9fs_xattr_set(dentry, handler->prefix, value, size, flags); in v9fs_xattr_set_acl() 324 set_cached_acl(inode, handler->flags, acl); in v9fs_xattr_set_acl()
|
D | xattr.c | 140 static int v9fs_xattr_handler_get(const struct xattr_handler *handler, in v9fs_xattr_handler_get() argument 144 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_get() 151 static int v9fs_xattr_handler_set(const struct xattr_handler *handler, in v9fs_xattr_handler_set() argument 155 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_set()
|
/linux-4.4.14/drivers/gpu/drm/amd/include/ |
D | cgs_linux.h | 72 cgs_irq_handler_func_t handler, 110 #define cgs_add_irq_source(dev,src_id,num_types,set,handler,private_data) \ argument 111 CGS_OS_CALL(add_irq_source,dev,src_id,num_types,set,handler, \
|
/linux-4.4.14/fs/jffs2/ |
D | xattr_trusted.c | 19 static int jffs2_trusted_getxattr(const struct xattr_handler *handler, in jffs2_trusted_getxattr() argument 29 static int jffs2_trusted_setxattr(const struct xattr_handler *handler, in jffs2_trusted_setxattr() argument 39 static size_t jffs2_trusted_listxattr(const struct xattr_handler *handler, in jffs2_trusted_listxattr() argument
|
D | xattr_user.c | 19 static int jffs2_user_getxattr(const struct xattr_handler *handler, in jffs2_user_getxattr() argument 29 static int jffs2_user_setxattr(const struct xattr_handler *handler, in jffs2_user_setxattr() argument 39 static size_t jffs2_user_listxattr(const struct xattr_handler *handler, in jffs2_user_listxattr() argument
|
D | security.c | 51 static int jffs2_security_getxattr(const struct xattr_handler *handler, in jffs2_security_getxattr() argument 62 static int jffs2_security_setxattr(const struct xattr_handler *handler, in jffs2_security_setxattr() argument 73 static size_t jffs2_security_listxattr(const struct xattr_handler *handler, in jffs2_security_listxattr() argument
|
/linux-4.4.14/Documentation/ia64/ |
D | fsys.txt | 41 - execution is interruptible and preemptible (an fsys-mode handler 77 * How to write an fsyscall handler 83 normal Linux system call handler. For performance-critical system 88 The entry and exit-state of an fsyscall handler is as follows: 90 ** Machine state on entry to fsyscall handler: 102 ** Required machine state on exit to fsyscall handler: 104 - r11 = saved ar.pfs (as passed into the fsyscall handler) 105 - r15 = system call number (as passed into the fsyscall handler) 106 - r32-r39 = system call arguments (as passed into the fsyscall handler) 107 - b6 = return address (as passed into the fsyscall handler) [all …]
|
/linux-4.4.14/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 103 PyObject *handler; in get_handler() local 105 handler = PyDict_GetItemString(main_dict, handler_name); in get_handler() 106 if (handler && !PyCallable_Check(handler)) in get_handler() 108 return handler; in get_handler() 111 static void call_object(PyObject *handler, PyObject *args, const char *die_msg) in call_object() argument 115 retval = PyObject_CallObject(handler, args); in call_object() 123 PyObject *handler; in try_call_object() local 125 handler = get_handler(handler_name); in try_call_object() 126 if (handler) in try_call_object() 127 call_object(handler, args, handler_name); in try_call_object() [all …]
|
D | trace-event-perl.c | 254 static char handler[256]; in perl_process_tracepoint() local 273 sprintf(handler, "%s::%s", event->system, event->name); in perl_process_tracepoint() 276 define_event_symbols(event, handler, event->print_fmt.args); in perl_process_tracepoint() 288 XPUSHs(sv_2mortal(newSVpv(handler, 0))); in perl_process_tracepoint() 320 if (get_cv(handler, 0)) in perl_process_tracepoint() 321 call_pv(handler, G_SCALAR); in perl_process_tracepoint() 323 XPUSHs(sv_2mortal(newSVpv(handler, 0))); in perl_process_tracepoint()
|
/linux-4.4.14/Documentation/gpio/ |
D | driver.txt | 91 an SoC. This means that there is a fast IRQ handler for the GPIOs that 92 gets called in a chain from the parent IRQ handler, most typically the 96 handler will be called immediately from the parent irqchip, while 98 something like this sequence in its interrupt handler: 110 in chained IRQ handler. 112 - chained IRQ handler can be converted to generic irq handler and this way 113 it will be threaded IRQ handler on -RT and hard IRQ handler on non-RT 116 so IRQ core will complain if it will be called from IRQ handler wich is forced 128 performed by generic IRQ handler which is configured using request_irq(). 130 its interrupt handler: [all …]
|
/linux-4.4.14/fs/ext2/ |
D | xattr_trusted.c | 12 ext2_xattr_trusted_list(const struct xattr_handler *handler, in ext2_xattr_trusted_list() argument 31 ext2_xattr_trusted_get(const struct xattr_handler *handler, in ext2_xattr_trusted_get() argument 42 ext2_xattr_trusted_set(const struct xattr_handler *handler, in ext2_xattr_trusted_set() argument
|
D | xattr_user.c | 14 ext2_xattr_user_list(const struct xattr_handler *handler, in ext2_xattr_user_list() argument 33 ext2_xattr_user_get(const struct xattr_handler *handler, in ext2_xattr_user_get() argument 46 ext2_xattr_user_set(const struct xattr_handler *handler, in ext2_xattr_user_set() argument
|
D | xattr_security.c | 11 ext2_xattr_security_list(const struct xattr_handler *handler, in ext2_xattr_security_list() argument 27 ext2_xattr_security_get(const struct xattr_handler *handler, in ext2_xattr_security_get() argument 38 ext2_xattr_security_set(const struct xattr_handler *handler, in ext2_xattr_security_set() argument
|
/linux-4.4.14/fs/ext4/ |
D | xattr_trusted.c | 16 ext4_xattr_trusted_list(const struct xattr_handler *handler, in ext4_xattr_trusted_list() argument 35 ext4_xattr_trusted_get(const struct xattr_handler *handler, in ext4_xattr_trusted_get() argument 46 ext4_xattr_trusted_set(const struct xattr_handler *handler, in ext4_xattr_trusted_set() argument
|
D | xattr_user.c | 15 ext4_xattr_user_list(const struct xattr_handler *handler, in ext4_xattr_user_list() argument 34 ext4_xattr_user_get(const struct xattr_handler *handler, in ext4_xattr_user_get() argument 47 ext4_xattr_user_set(const struct xattr_handler *handler, in ext4_xattr_user_set() argument
|
D | xattr_security.c | 15 ext4_xattr_security_list(const struct xattr_handler *handler, in ext4_xattr_security_list() argument 32 ext4_xattr_security_get(const struct xattr_handler *handler, in ext4_xattr_security_get() argument 43 ext4_xattr_security_set(const struct xattr_handler *handler, in ext4_xattr_security_set() argument
|
/linux-4.4.14/tools/testing/selftests/timers/ |
D | leapcrash.c | 64 void handler(int unused) in handler() function 80 signal(SIGINT, handler); in main() 81 signal(SIGKILL, handler); in main()
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | omap_irq.c | 190 struct omap_drm_irq *handler, *n; in omap_irq_handler() local 209 list_for_each_entry_safe(handler, n, &priv->irq_list, node) { in omap_irq_handler() 210 if (handler->irqmask & irqstatus) { in omap_irq_handler() 212 handler->irq(handler, handler->irqmask & irqstatus); in omap_irq_handler()
|
/linux-4.4.14/usr/ |
D | gen_init_cpio.c | 29 int (*handler)(const char *line); member 496 .handler = cpio_mkfile_line, 499 .handler = cpio_mknod_line, 502 .handler = cpio_mkdir_line, 505 .handler = cpio_mkslink_line, 508 .handler = cpio_mkpipe_line, 511 .handler = cpio_mksock_line, 514 .handler = NULL, 606 if ((rc = file_handler_table[type_idx].handler(args))) { in main()
|
/linux-4.4.14/drivers/macintosh/ |
D | adb.c | 97 void (*handler)(unsigned char *, int, int); member 475 void (*handler)(unsigned char *, int, int)) in adb_register() 485 if (adb_handler[i].handler != 0) { in adb_register() 492 adb_handler[i].handler = handler; in adb_register() 509 if (adb_handler[index].handler) { in adb_unregister() 516 adb_handler[index].handler = NULL; in adb_unregister() 531 void (*handler)(unsigned char *, int, int); in adb_input() local 547 handler = adb_handler[id].handler; in adb_input() 548 if (handler != NULL) in adb_input() 551 if (handler != NULL) { in adb_input() [all …]
|
D | mac_hid.c | 92 static int mac_hid_emumouse_connect(struct input_handler *handler, in mac_hid_emumouse_connect() argument 108 handle->handler = handler; in mac_hid_emumouse_connect()
|
/linux-4.4.14/drivers/ide/ |
D | ide-io.c | 617 ide_handler_t *handler; in ide_timer_expiry() local 625 handler = hwif->handler; in ide_timer_expiry() 627 if (handler == NULL || hwif->req_gen != hwif->req_gen_timer) { in ide_timer_expiry() 651 hwif->handler = NULL; in ide_timer_expiry() 664 startstop = handler(drive); in ide_timer_expiry() 673 startstop = handler(drive); in ide_timer_expiry() 775 ide_handler_t *handler; in ide_intr() local 793 handler = hwif->handler; in ide_intr() 795 if (handler == NULL || hwif->polling) { in ide_intr() 836 hwif->handler = NULL; in ide_intr() [all …]
|
D | ide-iops.c | 444 void __ide_set_handler(ide_drive_t *drive, ide_handler_t *handler, in __ide_set_handler() argument 449 BUG_ON(hwif->handler); in __ide_set_handler() 450 hwif->handler = handler; in __ide_set_handler() 456 void ide_set_handler(ide_drive_t *drive, ide_handler_t *handler, in ide_set_handler() argument 463 __ide_set_handler(drive, handler, timeout); in ide_set_handler() 482 ide_handler_t *handler, unsigned timeout) in ide_execute_command() argument 491 __ide_set_handler(drive, handler, timeout); in ide_execute_command()
|
/linux-4.4.14/drivers/platform/x86/ |
D | wmi.c | 67 wmi_notify_handler handler; member 497 wmi_notify_handler handler, void *data) in wmi_install_notify_handler() argument 504 if (!guid || !handler) in wmi_install_notify_handler() 515 if (block->handler && in wmi_install_notify_handler() 516 block->handler != wmi_notify_debug) in wmi_install_notify_handler() 519 block->handler = handler; in wmi_install_notify_handler() 556 if (!block->handler || in wmi_remove_notify_handler() 557 block->handler == wmi_notify_debug) in wmi_remove_notify_handler() 561 block->handler = wmi_notify_debug; in wmi_remove_notify_handler() 565 block->handler = NULL; in wmi_remove_notify_handler() [all …]
|
/linux-4.4.14/arch/c6x/kernel/ |
D | vectors.S | 18 .macro IRQVEC name, handler 25 || MVKL .S1 \handler,A0 26 MVKH .S1 \handler,A0 34 B .S2 \handler
|
/linux-4.4.14/arch/alpha/kernel/ |
D | irq_alpha.c | 217 .handler = rtc_timer_interrupt, 231 .handler = no_action, 236 .handler = no_action, 241 .handler = no_action,
|
/linux-4.4.14/drivers/gpio/ |
D | gpio-ep93xx.c | 174 irq_flow_handler_t handler; in ep93xx_gpio_irq_type() local 182 handler = handle_edge_irq; in ep93xx_gpio_irq_type() 187 handler = handle_edge_irq; in ep93xx_gpio_irq_type() 192 handler = handle_level_irq; in ep93xx_gpio_irq_type() 197 handler = handle_level_irq; in ep93xx_gpio_irq_type() 206 handler = handle_edge_irq; in ep93xx_gpio_irq_type() 212 irq_set_handler_locked(d, handler); in ep93xx_gpio_irq_type()
|
/linux-4.4.14/arch/m68k/68000/ |
D | timers.c | 74 .handler = hw_tick, 103 void hw_timer_init(irq_handler_t handler) in hw_timer_init() argument 119 timer_interrupt = handler; in hw_timer_init()
|
/linux-4.4.14/drivers/usb/renesas_usbhs/ |
D | fifo.c | 71 if (!pipe->handler) { in usbhs_pkt_push() 73 pipe->handler = &usbhsf_null_handler; in usbhs_pkt_push() 85 pkt->handler = pipe->handler; in usbhs_pkt_push() 180 func = pkt->handler->prepare; in usbhsf_pkt_handler() 183 func = pkt->handler->try_run; in usbhsf_pkt_handler() 186 func = pkt->handler->dma_done; in usbhsf_pkt_handler() 415 if (pkt->handler == &usbhs_dcp_status_stage_in_handler) in usbhs_dcp_dir_switch_done() 448 pkt->handler = &usbhs_fifo_pio_push_handler; in usbhsf_dcp_data_stage_try_push() 450 return pkt->handler->prepare(pkt, is_done); in usbhsf_dcp_data_stage_try_push() 487 pkt->handler = &usbhs_fifo_pio_pop_handler; in usbhsf_dcp_data_stage_prepare_pop() [all …]
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-script-perl.txt | 26 That will generate a starter script containing a handler for each of 40 'handler function' is called for each event in the trace. If there's 41 no handler function defined for a given event type, the event is 46 handler function; some of the less common ones aren't - those are 74 The handler function for this event would be defined as: 85 The handler function takes the form subsystem::event_name. 87 The $common_* arguments in the handler's argument list are the set of 104 counterparts as handler function arguments of the same name, as can be 126 The rest of the script can contain handler functions and support 129 Aside from the event handler functions discussed above, every script [all …]
|
D | perf-script-python.txt | 109 callback handler for each event type found in the perf.data trace 122 # The common_* event handler fields are the most useful fields common to 124 # in the format files. Those fields not available as handler params can 170 Following those are the 'event handler' functions generated one for 171 every event in the 'perf record' output. The handler functions take 180 doesn't correspond to any event handler in the script. This could 234 sys_enter() handler do the necessary tallying until all events have 236 store that information; every time the sys_enter() handler is called, 260 Putting that code into the raw_syscalls__sys_enter() handler, we 271 handler called at the end of script processing. [all …]
|
/linux-4.4.14/arch/mn10300/mm/ |
D | tlb-mn10300.S | 25 # Instruction TLB Miss handler entry point 80 mov _PAGE_VALID,d2 # force address error handler to be 88 # Data TLB Miss handler entry point 143 mov _PAGE_VALID,d2 # force address error handler to be 150 # Instruction TLB Address Error handler entry point
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | smp-low.S | 27 # IPI interrupt handler 54 # Cache flush IPI interrupt handler 75 # SMP boot CPU IPI interrupt handler
|
/linux-4.4.14/drivers/vme/ |
D | vme.c | 1030 struct vme_error_handler *handler; in vme_bus_error_handler() local 1035 handler = list_entry(handler_pos, struct vme_error_handler, in vme_bus_error_handler() 1037 if ((aspace == handler->aspace) && in vme_bus_error_handler() 1038 (address >= handler->start) && in vme_bus_error_handler() 1039 (address < handler->end)) { in vme_bus_error_handler() 1040 if (!handler->num_errors) in vme_bus_error_handler() 1041 handler->first_error = address; in vme_bus_error_handler() 1042 if (handler->num_errors != UINT_MAX) in vme_bus_error_handler() 1043 handler->num_errors++; in vme_bus_error_handler() 1059 struct vme_error_handler *handler; in vme_register_error_handler() local [all …]
|
/linux-4.4.14/arch/m68k/kernel/ |
D | ints.c | 75 void __init m68k_setup_auto_interrupt(void (*handler)(unsigned int, struct pt_regs *)) in m68k_setup_auto_interrupt() 77 if (handler) in m68k_setup_auto_interrupt() 78 *auto_irqhandler_fixup = (u32)handler; in m68k_setup_auto_interrupt()
|
/linux-4.4.14/arch/mips/math-emu/ |
D | cp1emu.c | 1467 union ieee754sp(*handler) (union ieee754sp, union ieee754sp, union ieee754sp); in fpux_emu() local 1511 handler = fpemu_sp_madd; in fpux_emu() 1514 handler = fpemu_sp_msub; in fpux_emu() 1517 handler = fpemu_sp_nmadd; in fpux_emu() 1520 handler = fpemu_sp_nmsub; in fpux_emu() 1527 fd = (*handler) (fr, fs, ft); in fpux_emu() 1564 union ieee754dp(*handler) (union ieee754dp, union ieee754dp, union ieee754dp); in fpux_emu() local 1607 handler = fpemu_dp_madd; in fpux_emu() 1610 handler = fpemu_dp_msub; in fpux_emu() 1613 handler = fpemu_dp_nmadd; in fpux_emu() [all …]
|
/linux-4.4.14/drivers/ata/ |
D | pata_isapnp.c | 53 irq_handler_t handler = NULL; in isapnp_init_one() local 60 handler = ata_sff_interrupt; in isapnp_init_one() 96 return ata_host_activate(host, irq, handler, 0, in isapnp_init_one()
|
/linux-4.4.14/include/pcmcia/ |
D | ds.h | 211 irq_handler_t handler); 214 irq_handler_t handler) in pcmcia_request_exclusive_irq() argument 216 return __pcmcia_request_exclusive_irq(p_dev, handler); in pcmcia_request_exclusive_irq() 220 irq_handler_t handler);
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | crash.c | 253 int crash_shutdown_register(crash_shutdown_t handler) in crash_shutdown_register() argument 261 crash_shutdown_handles[i] = handler; in crash_shutdown_register() 277 int crash_shutdown_unregister(crash_shutdown_t handler) in crash_shutdown_unregister() argument 283 if (crash_shutdown_handles[i] == handler) in crash_shutdown_unregister()
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | x_bsun.S | 4 | fpsp_bsun --- FPSP handler for branch/set on unordered exception 8 | The real_bsun handler will need to perform further corrective
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | sdio.h | 18 void (*handler)(struct b43_wldev *dev)); 29 void (*handler)(struct b43_wldev *dev)) in b43_sdio_request_irq()
|
/linux-4.4.14/Documentation/misc-devices/mei/ |
D | mei-client-bus.txt | 51 an Rx event) they can register an event handler through the 53 will trigger an event handler call and the driver implementation is supposed 54 to call mei_recv() from the event handler in order to fetch the pending 118 an ME bus event handler which is as close as it can get to registering a 119 threaded IRQ handler. 120 The handler implementation will typically call some I/O routine depending on
|
/linux-4.4.14/arch/m68k/include/asm/ |
D | machdep.h | 14 extern void (*mach_sched_init) (irq_handler_t handler); 36 extern void hw_timer_init(irq_handler_t handler);
|
/linux-4.4.14/Documentation/filesystems/ |
D | dnotify_test.c | 10 static void handler(int sig, siginfo_t *si, void *data) in handler() function 20 act.sa_sigaction = handler; in main()
|
/linux-4.4.14/fs/hfsplus/ |
D | xattr_trusted.c | 14 static int hfsplus_trusted_getxattr(const struct xattr_handler *handler, in hfsplus_trusted_getxattr() argument 23 static int hfsplus_trusted_setxattr(const struct xattr_handler *handler, in hfsplus_trusted_setxattr() argument
|
D | xattr_user.c | 14 static int hfsplus_user_getxattr(const struct xattr_handler *handler, in hfsplus_user_getxattr() argument 23 static int hfsplus_user_setxattr(const struct xattr_handler *handler, in hfsplus_user_setxattr() argument
|
D | xattr_security.c | 16 static int hfsplus_security_getxattr(const struct xattr_handler *handler, in hfsplus_security_getxattr() argument 25 static int hfsplus_security_setxattr(const struct xattr_handler *handler, in hfsplus_security_setxattr() argument
|
/linux-4.4.14/scripts/coccinelle/misc/ |
D | irqf_oneshot.cocci | 2 /// threaded IRQs without a primary handler need to be requested with 85 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT" 91 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT"
|
/linux-4.4.14/arch/blackfin/mach-bf561/ |
D | smp.c | 111 void __init platform_request_ipi(int irq, void *handler) in platform_request_ipi() argument 116 ret = request_irq(irq, handler, IRQF_PERCPU | IRQF_NO_SUSPEND | in platform_request_ipi() 117 IRQF_FORCE_RESUME, name, handler); in platform_request_ipi()
|
/linux-4.4.14/drivers/input/misc/ |
D | rotary_encoder.c | 266 irq_handler_t handler; in rotary_encoder_probe() local 321 handler = &rotary_encoder_quarter_period_irq; in rotary_encoder_probe() 325 handler = &rotary_encoder_half_period_irq; in rotary_encoder_probe() 329 handler = &rotary_encoder_irq; in rotary_encoder_probe() 338 err = request_irq(encoder->irq_a, handler, in rotary_encoder_probe() 346 err = request_irq(encoder->irq_b, handler, in rotary_encoder_probe()
|
/linux-4.4.14/arch/mips/pmcs-msp71xx/ |
D | msp_smp.c | 53 .handler = ipi_resched_interrupt, 59 .handler = ipi_call_interrupt,
|
D | msp_irq.c | 111 .handler = no_action, 117 .handler = no_action,
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | output.c | 256 void (*handler)(void *), void *data) in dss_mgr_register_framedone_handler() 258 return dss_mgr_ops->register_framedone_handler(mgr, handler, data); in dss_mgr_register_framedone_handler() 263 void (*handler)(void *), void *data) in dss_mgr_unregister_framedone_handler() 265 dss_mgr_ops->unregister_framedone_handler(mgr, handler, data); in dss_mgr_unregister_framedone_handler()
|
/linux-4.4.14/fs/xfs/ |
D | xfs_xattr.c | 35 xfs_xattr_get(const struct xattr_handler *handler, struct dentry *dentry, in xfs_xattr_get() argument 38 int xflags = handler->flags; in xfs_xattr_get() 80 xfs_xattr_set(const struct xattr_handler *handler, struct dentry *dentry, in xfs_xattr_set() argument 83 int xflags = handler->flags; in xfs_xattr_set()
|
/linux-4.4.14/Documentation/video4linux/ |
D | v4l2-controls.txt | 46 1.1) Add the handler to your driver's top-level struct: 56 1.2) Initialize the handler: 61 handler is expected to handle. It will allocate a hashtable based on this 64 1.3) Hook the control handler into the driver: 114 1.4) Clean up the handler at the end: 218 This makes it easy to init the handler and just add all controls and only check 243 struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler); 365 by the same handler since the handler's lock is held. If you need to access 377 will result in a deadlock since these helpers lock the handler as well. 379 You can also take the handler lock yourself: [all …]
|
/linux-4.4.14/Documentation/trace/ |
D | events-nmi.txt | 15 INFO: NMI handler took too long to run: 9.207 msecs 21 you some problems and you only want to trace that handler 33 echo 'handler==0xffffffff81625600 && delta_ns>1000000' > filter
|
/linux-4.4.14/arch/s390/kvm/ |
D | priv.c | 613 intercept_handler_t handler; in kvm_s390_handle_b2() local 620 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff]; in kvm_s390_handle_b2() 621 if (handler) in kvm_s390_handle_b2() 622 return handler(vcpu); in kvm_s390_handle_b2() 792 intercept_handler_t handler; in kvm_s390_handle_b9() local 795 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff]; in kvm_s390_handle_b9() 796 if (handler) in kvm_s390_handle_b9() 797 return handler(vcpu); in kvm_s390_handle_b9() 954 intercept_handler_t handler; in kvm_s390_handle_eb() local 956 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff]; in kvm_s390_handle_eb() [all …]
|
/linux-4.4.14/Documentation/ |
D | kprobes.txt | 25 can trap at almost any kernel code address(*), specifying a handler 40 the probe is to be inserted and what handler is to be called when 65 associated with the kprobe, passing the handler the addresses of the 83 handler routine should have the same signature (arg list and return 90 handler routine, and returns from the trap. As a result, control 91 passes to the handler, which is presented with the same register and 92 stack contents as the probed function. When it is done, the handler 99 handler has run. Up to MAX_STACK_SIZE bytes are copied -- e.g., 104 handler's prototype matches that of the probed function. 119 handler calls the user-specified return handler associated with the [all …]
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | event_sources.c | 24 irq_handler_t handler, in request_event_sources_irqs() argument 76 if (request_irq(virqs[i], handler, 0, name, NULL)) { in request_event_sources_irqs()
|
/linux-4.4.14/drivers/irqchip/ |
D | irq-clps711x.c | 134 irq_flow_handler_t handler = handle_level_irq; in clps711x_intc_irq_map() local 141 handler = handle_bad_irq; in clps711x_intc_irq_map() 144 handler = handle_fasteoi_irq; in clps711x_intc_irq_map() 151 irq_set_chip_and_handler(virq, &clps711x_intc_chip, handler); in clps711x_intc_irq_map()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | memx.fuc | 38 #define handler(cmd,hdr,len,func) /* 46 handler(ENTER , 0x0000, 0x0000, #memx_func_enter) 48 handler(LEAVE , 0x0000, 0x0000, #memx_func_leave) 49 handler(WR32 , 0x0000, 0x0002, #memx_func_wr32) 50 handler(WAIT , 0x0004, 0x0000, #memx_func_wait) 51 handler(DELAY , 0x0001, 0x0000, #memx_func_delay) 52 handler(VBLANK, 0x0001, 0x0000, #memx_func_wait_vblank) 53 handler(TRAIN , 0x0000, 0x0000, #memx_func_train) 381 // execute the opcode handler
|
/linux-4.4.14/arch/arm/mm/ |
D | alignment.c | 775 int (*handler)(unsigned long addr, unsigned long instr, struct pt_regs *regs); in do_alignment() local 834 handler = do_alignment_ldrhstrh; in do_alignment() 837 handler = do_alignment_ldrdstrd; in do_alignment() 848 handler = do_alignment_ldrstr; in do_alignment() 881 handler = do_alignment_ldrstr; in do_alignment() 887 handler = do_alignment_t32_to_handler(&instr, regs, &offset); in do_alignment() 890 handler = do_alignment_ldmstm; in do_alignment() 898 if (!handler) in do_alignment() 900 type = handler(addr, instr, regs); in do_alignment()
|
/linux-4.4.14/arch/blackfin/include/asm/ |
D | irq_handler.h | 48 extern int bfin_request_exception(unsigned int exception, void (*handler)(void)); 49 extern int bfin_free_exception(unsigned int exception, void (*handler)(void));
|
/linux-4.4.14/include/net/ |
D | wext.h | 46 iw_handler handler); 49 iw_handler handler);
|
D | protocol.h | 43 int (*handler)(struct sk_buff *skb); member 58 int (*handler)(struct sk_buff *skb); member
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | syscall_arg_fault.c | 29 static void sethandler(int sig, void (*handler)(int, siginfo_t *, void *), in sethandler() 34 sa.sa_sigaction = handler; in sethandler()
|
/linux-4.4.14/arch/mips/include/asm/netlogic/ |
D | common.h | 75 nlm_set_nmi_handler(void *handler) in nlm_set_nmi_handler() argument 79 *(int64_t *)nmih = (long)handler; in nlm_set_nmi_handler()
|
/linux-4.4.14/arch/mips/mti-malta/ |
D | malta-int.c | 231 .handler = ipi_resched_interrupt, 237 .handler = ipi_call_interrupt, 244 .handler = i8259_handler, 250 .handler = corehi_handler,
|
/linux-4.4.14/drivers/staging/iio/ |
D | iio_dummy_evgen.c | 59 struct iio_dummy_handle_irq handler; member 116 init_irq_work(&iio_evgen->handler.work, iio_dummy_work_handler); in iio_dummy_evgen_create() 195 iio_evgen->handler.irq = iio_evgen->base + this_attr->address; in iio_evgen_poke() 197 irq_work_queue(&iio_evgen->handler.work); in iio_evgen_poke()
|
/linux-4.4.14/arch/unicore32/mm/ |
D | alignment.c | 360 int (*handler) (unsigned long addr, unsigned long instr, in do_alignment() local 382 handler = do_alignment_ldrhstrh; in do_alignment() 390 handler = do_alignment_ldrstr; in do_alignment() 422 handler = do_alignment_ldrstr; in do_alignment() 427 handler = do_alignment_ldmstm; in do_alignment() 434 type = handler(addr, instr, regs); in do_alignment()
|
/linux-4.4.14/drivers/misc/mic/host/ |
D | mic_intr.h | 103 irq_handler_t handler; member 141 irq_handler_t handler, irq_handler_t thread_fn,
|
D | mic_intr.c | 73 if (intr_cb->handler) in mic_interrupt() 74 intr_cb->handler(pdev->irq, in mic_interrupt() 120 u8 idx, irq_handler_t handler, irq_handler_t thread_fn, in mic_register_intr_callback() argument 131 intr_cb->handler = handler; in mic_register_intr_callback() 433 irq_handler_t handler, irq_handler_t thread_fn, in mic_request_threaded_irq() argument 463 rc = request_threaded_irq(msix->vector, handler, thread_fn, in mic_request_threaded_irq() 478 intr_cb = mic_register_intr_callback(mdev, offset, handler, in mic_request_threaded_irq()
|
/linux-4.4.14/arch/s390/include/asm/ |
D | irq.h | 90 int register_external_irq(u16 code, ext_int_handler_t handler); 91 int unregister_external_irq(u16 code, ext_int_handler_t handler);
|
/linux-4.4.14/arch/mips/loongson64/lemote-2f/ |
D | irq.c | 97 .handler = ip6_action, 103 .handler = no_action,
|
/linux-4.4.14/arch/mn10300/include/asm/ |
D | exceptions.h | 91 extern void __set_intr_stub(enum exception_code code, void *handler); 92 extern void set_intr_stub(enum exception_code code, void *handler);
|
/linux-4.4.14/arch/arm/probes/ |
D | decode.h | 313 probes_insn_handler_t *handler; member 363 union decode_item handler; member 376 union decode_item handler; member
|
/linux-4.4.14/include/linux/mfd/ |
D | mc13xxx.h | 25 irq_handler_t handler, const char *name, void *dev); 44 irq_handler_t handler, in mc13xxx_irq_request_nounmask() argument 47 return mc13xxx_irq_request(mc13xxx, irq, handler, name, dev); in mc13xxx_irq_request_nounmask()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | videobuf2-vmalloc.c | 30 struct vb2_vmarea_handler handler; member 48 buf->handler.refcount = &buf->refcount; in vb2_vmalloc_alloc() 49 buf->handler.put = vb2_vmalloc_put; in vb2_vmalloc_alloc() 50 buf->handler.arg = buf; in vb2_vmalloc_alloc() 188 vma->vm_private_data = &buf->handler; in vb2_vmalloc_mmap()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | l2t.h | 103 arp_err_handler_t handler) in t4_set_arp_err_handler() argument 106 L2T_SKB_CB(skb)->arp_err_handler = handler; in t4_set_arp_err_handler()
|