Home
last modified time | relevance | path

Searched refs:handler_obj (Results 1 – 8 of 8) sorted by relevance

/linux-4.4.14/drivers/acpi/acpica/
Devhandler.c156 union acpi_operand_object *handler_obj; in acpi_ev_has_default_handler() local
162 handler_obj = obj_desc->device.handler; in acpi_ev_has_default_handler()
166 while (handler_obj) { in acpi_ev_has_default_handler()
167 if (handler_obj->address_space.space_id == space_id) { in acpi_ev_has_default_handler()
168 if (handler_obj->address_space.handler_flags & in acpi_ev_has_default_handler()
174 handler_obj = handler_obj->address_space.next; in acpi_ev_has_default_handler()
202 union acpi_operand_object *handler_obj; in acpi_ev_install_handler() local
210 handler_obj = (union acpi_operand_object *)context; in acpi_ev_install_handler()
214 if (!handler_obj) { in acpi_ev_install_handler()
256 handler_obj->address_space.space_id) { in acpi_ev_install_handler()
[all …]
Devxfregn.c177 union acpi_operand_object *handler_obj; in ACPI_EXPORT_SYMBOL() local
218 handler_obj = obj_desc->device.handler; in ACPI_EXPORT_SYMBOL()
220 while (handler_obj) { in ACPI_EXPORT_SYMBOL()
224 if (handler_obj->address_space.space_id == space_id) { in ACPI_EXPORT_SYMBOL()
228 if (handler_obj->address_space.handler != handler) { in ACPI_EXPORT_SYMBOL()
238 handler_obj, handler, in ACPI_EXPORT_SYMBOL()
242 region_obj = handler_obj->address_space.region_list; in ACPI_EXPORT_SYMBOL()
261 handler_obj->address_space.region_list; in ACPI_EXPORT_SYMBOL()
267 *last_obj_ptr = handler_obj->address_space.next; in ACPI_EXPORT_SYMBOL()
271 acpi_ut_remove_reference(handler_obj); in ACPI_EXPORT_SYMBOL()
[all …]
Devrgnini.c173 union acpi_operand_object *handler_obj; in acpi_ev_pci_config_region_setup() local
182 handler_obj = region_obj->region.handler; in acpi_ev_pci_config_region_setup()
183 if (!handler_obj) { in acpi_ev_pci_config_region_setup()
217 if (handler_obj->address_space.node == acpi_gbl_root_node) { in acpi_ev_pci_config_region_setup()
255 pci_root_node = handler_obj->address_space.node; in acpi_ev_pci_config_region_setup()
505 union acpi_operand_object *handler_obj; in acpi_ev_initialize_region() local
561 handler_obj = 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()
[all …]
Ddbdisply.c942 union acpi_operand_object *handler_obj; in acpi_db_display_handlers() local
954 handler_obj = obj_desc->device.handler; in acpi_db_display_handlers()
960 while (handler_obj) { in acpi_db_display_handlers()
962 handler_obj->address_space.space_id) { in acpi_db_display_handlers()
965 (handler_obj->address_space. in acpi_db_display_handlers()
969 handler_obj->address_space. in acpi_db_display_handlers()
975 handler_obj = handler_obj->address_space.next; in acpi_db_display_handlers()
987 handler_obj = obj_desc->device.handler; in acpi_db_display_handlers()
988 while (handler_obj) { in acpi_db_display_handlers()
989 if (handler_obj->address_space.space_id >= in acpi_db_display_handlers()
[all …]
Devxface.c98 union acpi_operand_object *handler_obj; in acpi_install_notify_handler() local
179 handler_obj = obj_desc->common_notify.notify_list[i]; in acpi_install_notify_handler()
180 while (handler_obj) { in acpi_install_notify_handler()
181 if (handler_obj->notify.handler == handler) { in acpi_install_notify_handler()
186 handler_obj = handler_obj->notify.next[i]; in acpi_install_notify_handler()
193 handler_obj = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_NOTIFY); in acpi_install_notify_handler()
194 if (!handler_obj) { in acpi_install_notify_handler()
199 handler_obj->notify.node = node; in acpi_install_notify_handler()
200 handler_obj->notify.handler_type = handler_type; in acpi_install_notify_handler()
201 handler_obj->notify.handler = handler; in acpi_install_notify_handler()
[all …]
Devregion.c330 union acpi_operand_object *handler_obj; in acpi_ev_detach_region() local
349 handler_obj = region_obj->region.handler; in acpi_ev_detach_region()
350 if (!handler_obj) { in acpi_ev_detach_region()
359 obj_desc = handler_obj->address_space.region_list; in acpi_ev_detach_region()
361 last_obj_ptr = &handler_obj->address_space.region_list; in acpi_ev_detach_region()
370 region_obj, handler_obj)); in acpi_ev_detach_region()
410 region_setup = handler_obj->address_space.setup; in acpi_ev_detach_region()
414 handler_obj->address_space. in acpi_ev_detach_region()
449 acpi_ut_remove_reference(handler_obj); in acpi_ev_detach_region()
473 region_obj, handler_obj)); in acpi_ev_detach_region()
[all …]
Devmisc.c198 union acpi_operand_object *handler_obj; in acpi_ev_notify_dispatch() local
212 handler_obj = info->notify.handler_list_head; in acpi_ev_notify_dispatch()
213 while (handler_obj) { in acpi_ev_notify_dispatch()
214 handler_obj->notify.handler(info->notify.node, in acpi_ev_notify_dispatch()
216 handler_obj->notify.context); in acpi_ev_notify_dispatch()
218 handler_obj = in acpi_ev_notify_dispatch()
219 handler_obj->notify.next[info->notify.handler_list_id]; in acpi_ev_notify_dispatch()
Dacevents.h188 acpi_ev_attach_region(union acpi_operand_object *handler_obj,