Home
last modified time | relevance | path

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

/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.c175 union acpi_operand_object *handler_obj; in ACPI_EXPORT_SYMBOL() local
216 handler_obj = obj_desc->device.handler; in ACPI_EXPORT_SYMBOL()
218 while (handler_obj) { in ACPI_EXPORT_SYMBOL()
222 if (handler_obj->address_space.space_id == space_id) { in ACPI_EXPORT_SYMBOL()
226 if (handler_obj->address_space.handler != handler) { in ACPI_EXPORT_SYMBOL()
236 handler_obj, handler, in ACPI_EXPORT_SYMBOL()
240 region_obj = handler_obj->address_space.region_list; in ACPI_EXPORT_SYMBOL()
259 handler_obj->address_space.region_list; in ACPI_EXPORT_SYMBOL()
265 *last_obj_ptr = handler_obj->address_space.next; in ACPI_EXPORT_SYMBOL()
269 acpi_ut_remove_reference(handler_obj); in ACPI_EXPORT_SYMBOL()
[all …]
Devxface.c86 union acpi_operand_object *handler_obj; in acpi_install_notify_handler() local
167 handler_obj = obj_desc->common_notify.notify_list[i]; in acpi_install_notify_handler()
168 while (handler_obj) { in acpi_install_notify_handler()
169 if (handler_obj->notify.handler == handler) { in acpi_install_notify_handler()
174 handler_obj = handler_obj->notify.next[i]; in acpi_install_notify_handler()
181 handler_obj = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_NOTIFY); in acpi_install_notify_handler()
182 if (!handler_obj) { in acpi_install_notify_handler()
187 handler_obj->notify.node = node; in acpi_install_notify_handler()
188 handler_obj->notify.handler_type = handler_type; in acpi_install_notify_handler()
189 handler_obj->notify.handler = handler; in acpi_install_notify_handler()
[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 …]
Devregion.c319 union acpi_operand_object *handler_obj; in acpi_ev_detach_region() local
337 handler_obj = region_obj->region.handler; in acpi_ev_detach_region()
338 if (!handler_obj) { in acpi_ev_detach_region()
347 obj_desc = handler_obj->address_space.region_list; in acpi_ev_detach_region()
348 last_obj_ptr = &handler_obj->address_space.region_list; in acpi_ev_detach_region()
357 region_obj, handler_obj)); in acpi_ev_detach_region()
397 region_setup = handler_obj->address_space.setup; in acpi_ev_detach_region()
401 handler_obj->address_space. in acpi_ev_detach_region()
428 acpi_ut_remove_reference(handler_obj); in acpi_ev_detach_region()
443 region_obj, handler_obj)); in acpi_ev_detach_region()
[all …]
Devmisc.c196 union acpi_operand_object *handler_obj; in acpi_ev_notify_dispatch() local
210 handler_obj = info->notify.handler_list_head; in acpi_ev_notify_dispatch()
211 while (handler_obj) { in acpi_ev_notify_dispatch()
212 handler_obj->notify.handler(info->notify.node, in acpi_ev_notify_dispatch()
214 handler_obj->notify.context); in acpi_ev_notify_dispatch()
216 handler_obj = in acpi_ev_notify_dispatch()
217 handler_obj->notify.next[info->notify.handler_list_id]; in acpi_ev_notify_dispatch()
Dacevents.h187 acpi_ev_attach_region(union acpi_operand_object *handler_obj,