Lines Matching full:handles
358 list->handles = kcalloc(list->count, sizeof(*list->handles), GFP_KERNEL); in acpi_evaluate_reference()
359 if (!list->handles) in acpi_evaluate_reference()
373 list->handles[i] = element->reference.handle; in acpi_evaluate_reference()
374 acpi_handle_debug(list->handles[i], "Found in reference list\n"); in acpi_evaluate_reference()
385 kfree(list->handles); in acpi_evaluate_reference()
386 list->handles = NULL; in acpi_evaluate_reference()
404 * contain the same ACPI handles in the same order. Otherwise, return false.
410 !memcmp(list1->handles, list2->handles, in acpi_handle_list_equal()
411 list1->count * sizeof(*list1->handles)); in acpi_handle_list_equal()
420 * Free the handles table in @dst, move the handles table from @src to @dst,
427 kfree(dst->handles); in acpi_handle_list_replace()
430 dst->handles = src->handles; in acpi_handle_list_replace()
432 src->handles = NULL; in acpi_handle_list_replace()
438 * acpi_handle_list_free - Free the handles table in an ACPI handle list
441 * Free the handles table in @list and clear its count field.
448 kfree(list->handles); in acpi_handle_list_free()
476 if (dep_devices.handles[i] == match) { in acpi_device_dep()