Lines Matching defs:handler
27 * handler - Address of the handler
29 * context - Value passed to the handler on each access
33 * DESCRIPTION: Install a handler for all op_regions of a given space_id.
45 acpi_adr_space_handler handler,
72 /* Install the handler for all Regions for this Space ID */
75 acpi_ev_install_space_handler(node, space_id, handler, setup,
98 * handler - Address of the handler
102 * DESCRIPTION: Remove a previously installed handler.
108 acpi_adr_space_handler handler)
150 /* Find the address handler the user requested */
152 handler_obj = obj_desc->common_notify.handler;
153 last_obj_ptr = &obj_desc->common_notify.handler;
156 /* We have a handler, see if user requested this one */
160 /* Handler must be the same as the installed handler */
162 if (handler_obj->address_space.handler != handler) {
170 "Removing address handler %p(%p) for region %s "
172 handler_obj, handler,
178 /* Walk the handler's region list */
182 * First disassociate the handler from the region.
202 /* Now we can delete the handler object */
216 /* The handler does not exist */
219 "Unable to remove address handler %p for %s(%X), DevNode %p, obj %p\n",
220 handler, acpi_ut_get_region_name(space_id), space_id,