Lines Matching refs:handler_obj
156 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()
261 (handler_obj->address_space. in acpi_ev_install_handler()
264 handler_obj)); in acpi_ev_install_handler()
290 if (obj_desc->region.space_id != handler_obj->address_space.space_id) { in acpi_ev_install_handler()
306 status = acpi_ev_attach_region(handler_obj, obj_desc, FALSE); in acpi_ev_install_handler()
334 union acpi_operand_object *handler_obj; in acpi_ev_install_space_handler() local
406 handler_obj = obj_desc->device.handler; in acpi_ev_install_space_handler()
410 while (handler_obj) { in acpi_ev_install_space_handler()
414 if (handler_obj->address_space.space_id == space_id) { in acpi_ev_install_space_handler()
415 if (handler_obj->address_space.handler == in acpi_ev_install_space_handler()
434 handler_obj = handler_obj->address_space.next; in acpi_ev_install_space_handler()
483 handler_obj = in acpi_ev_install_space_handler()
485 if (!handler_obj) { in acpi_ev_install_space_handler()
492 handler_obj->address_space.space_id = (u8)space_id; in acpi_ev_install_space_handler()
493 handler_obj->address_space.handler_flags = flags; in acpi_ev_install_space_handler()
494 handler_obj->address_space.region_list = NULL; in acpi_ev_install_space_handler()
495 handler_obj->address_space.node = node; in acpi_ev_install_space_handler()
496 handler_obj->address_space.handler = handler; in acpi_ev_install_space_handler()
497 handler_obj->address_space.context = context; in acpi_ev_install_space_handler()
498 handler_obj->address_space.setup = setup; in acpi_ev_install_space_handler()
502 handler_obj->address_space.next = obj_desc->device.handler; in acpi_ev_install_space_handler()
508 obj_desc->device.handler = handler_obj; in acpi_ev_install_space_handler()
525 handler_obj, NULL); in acpi_ev_install_space_handler()