Lines Matching defs:handler_obj
64 union acpi_operand_object *handler_obj;
145 handler_obj = obj_desc->common_notify.notify_list[i];
146 while (handler_obj) {
147 if (handler_obj->notify.handler == handler) {
152 handler_obj = handler_obj->notify.next[i];
159 handler_obj = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_NOTIFY);
160 if (!handler_obj) {
165 handler_obj->notify.node = node;
166 handler_obj->notify.handler_type = handler_type;
167 handler_obj->notify.handler = handler;
168 handler_obj->notify.context = context;
174 handler_obj->notify.next[i] =
177 obj_desc->common_notify.notify_list[i] = handler_obj;
184 acpi_ut_add_reference(handler_obj);
217 union acpi_operand_object *handler_obj;
288 handler_obj = obj_desc->common_notify.notify_list[i];
293 while (handler_obj &&
294 (handler_obj->notify.handler != handler)) {
295 previous_handler_obj = handler_obj;
296 handler_obj = handler_obj->notify.next[i];
299 if (!handler_obj) {
308 handler_obj->notify.next[i];
312 handler_obj->notify.next[i];
320 acpi_ut_remove_reference(handler_obj);