Lines Matching full:handles
368 list->handles = kcalloc(list->count, sizeof(*list->handles), GFP_KERNEL); in acpi_evaluate_reference()
369 if (!list->handles) in acpi_evaluate_reference()
383 list->handles[i] = element->reference.handle; in acpi_evaluate_reference()
384 acpi_handle_debug(list->handles[i], "Found in reference list\n"); in acpi_evaluate_reference()
395 kfree(list->handles); in acpi_evaluate_reference()
396 list->handles = NULL; in acpi_evaluate_reference()
414 * contain the same ACPI handles in the same order. Otherwise, return false.
420 !memcmp(list1->handles, list2->handles, in acpi_handle_list_equal()
421 list1->count * sizeof(*list1->handles)); in acpi_handle_list_equal()
430 * Free the handles table in @dst, move the handles table from @src to @dst,
437 kfree(dst->handles); in acpi_handle_list_replace()
440 dst->handles = src->handles; in acpi_handle_list_replace()
442 src->handles = NULL; in acpi_handle_list_replace()
448 * acpi_handle_list_free - Free the handles table in an ACPI handle list
451 * Free the handles table in @list and clear its count field.
458 kfree(list->handles); in acpi_handle_list_free()
486 if (dep_devices.handles[i] == match) { in acpi_device_dep()