Lines Matching refs:target_object

208 	union acpi_object               *target_object;  in acpi_ut_copy_ielement_to_eelement()  local
215 target_object = (union acpi_object *) in acpi_ut_copy_ielement_to_eelement()
225 target_object, info->free_space, &object_space); in acpi_ut_copy_ielement_to_eelement()
237 target_object->type = ACPI_TYPE_PACKAGE; in acpi_ut_copy_ielement_to_eelement()
238 target_object->package.count = source_object->package.count; in acpi_ut_copy_ielement_to_eelement()
239 target_object->package.elements = ACPI_CAST_PTR (union acpi_object, info->free_space); in acpi_ut_copy_ielement_to_eelement()
244 state->pkg.this_target_obj = target_object; in acpi_ut_copy_ielement_to_eelement()
251 (acpi_size) target_object->package.count * sizeof (union acpi_object)); in acpi_ut_copy_ielement_to_eelement()
723 union acpi_operand_object *target_object; in acpi_ut_copy_ielement_to_ielement() local
742 target_object = acpi_ut_create_internal_object ( in acpi_ut_copy_ielement_to_ielement()
744 if (!target_object) { in acpi_ut_copy_ielement_to_ielement()
748 status = acpi_ut_copy_simple_object (source_object, target_object); in acpi_ut_copy_ielement_to_ielement()
753 *this_target_ptr = target_object; in acpi_ut_copy_ielement_to_ielement()
769 target_object = acpi_ut_create_internal_object (ACPI_TYPE_PACKAGE); in acpi_ut_copy_ielement_to_ielement()
770 if (!target_object) { in acpi_ut_copy_ielement_to_ielement()
774 target_object->package.count = source_object->package.count; in acpi_ut_copy_ielement_to_ielement()
775 target_object->common.flags = source_object->common.flags; in acpi_ut_copy_ielement_to_ielement()
780 target_object->package.elements = in acpi_ut_copy_ielement_to_ielement()
783 if (!target_object->package.elements) { in acpi_ut_copy_ielement_to_ielement()
784 ACPI_MEM_FREE (target_object); in acpi_ut_copy_ielement_to_ielement()
791 state->pkg.this_target_obj = target_object; in acpi_ut_copy_ielement_to_ielement()
796 *this_target_ptr = target_object; in acpi_ut_copy_ielement_to_ielement()