target_desc       436 drivers/acpi/acpica/acinterp.h 			       union acpi_operand_object *target_desc);
target_desc       440 drivers/acpi/acpica/acinterp.h 			       union acpi_operand_object *target_desc);
target_desc       447 drivers/acpi/acpica/acinterp.h 				    union acpi_operand_object *target_desc);
target_desc       451 drivers/acpi/acpica/acinterp.h 				   union acpi_operand_object *target_desc);
target_desc       459 drivers/acpi/acpica/acinterp.h 				     union acpi_operand_object *target_desc);
target_desc       367 drivers/acpi/acpica/exstore.c 	union acpi_operand_object *target_desc;
target_desc       376 drivers/acpi/acpica/exstore.c 	target_desc = acpi_ns_get_attached_object(node);
target_desc       484 drivers/acpi/acpica/exstore.c 		    acpi_ex_store_object_to_object(source_desc, target_desc,
target_desc       490 drivers/acpi/acpica/exstore.c 		if (new_desc != target_desc) {
target_desc       523 drivers/acpi/acpica/exstore.c 		status = acpi_ex_write_data_to_field(source_desc, target_desc,
target_desc        31 drivers/acpi/acpica/exstorob.c 			       union acpi_operand_object *target_desc)
target_desc        40 drivers/acpi/acpica/exstorob.c 	if (source_desc == target_desc) {
target_desc        53 drivers/acpi/acpica/exstorob.c 	if ((target_desc->buffer.length == 0) ||
target_desc        54 drivers/acpi/acpica/exstorob.c 	    (target_desc->common.flags & AOPOBJ_STATIC_POINTER)) {
target_desc        55 drivers/acpi/acpica/exstorob.c 		target_desc->buffer.pointer = ACPI_ALLOCATE(length);
target_desc        56 drivers/acpi/acpica/exstorob.c 		if (!target_desc->buffer.pointer) {
target_desc        60 drivers/acpi/acpica/exstorob.c 		target_desc->buffer.length = length;
target_desc        65 drivers/acpi/acpica/exstorob.c 	if (length <= target_desc->buffer.length) {
target_desc        69 drivers/acpi/acpica/exstorob.c 		memset(target_desc->buffer.pointer, 0,
target_desc        70 drivers/acpi/acpica/exstorob.c 		       target_desc->buffer.length);
target_desc        71 drivers/acpi/acpica/exstorob.c 		memcpy(target_desc->buffer.pointer, buffer, length);
target_desc        92 drivers/acpi/acpica/exstorob.c 			target_desc->buffer.length = length;
target_desc        98 drivers/acpi/acpica/exstorob.c 		memcpy(target_desc->buffer.pointer, buffer,
target_desc        99 drivers/acpi/acpica/exstorob.c 		       target_desc->buffer.length);
target_desc       103 drivers/acpi/acpica/exstorob.c 				  length, target_desc->buffer.length));
target_desc       108 drivers/acpi/acpica/exstorob.c 	target_desc->buffer.flags = source_desc->buffer.flags;
target_desc       109 drivers/acpi/acpica/exstorob.c 	target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;
target_desc       128 drivers/acpi/acpica/exstorob.c 			       union acpi_operand_object *target_desc)
target_desc       137 drivers/acpi/acpica/exstorob.c 	if (source_desc == target_desc) {
target_desc       150 drivers/acpi/acpica/exstorob.c 	if ((length < target_desc->string.length) &&
target_desc       151 drivers/acpi/acpica/exstorob.c 	    (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) {
target_desc       156 drivers/acpi/acpica/exstorob.c 		memset(target_desc->string.pointer, 0,
target_desc       157 drivers/acpi/acpica/exstorob.c 		       (acpi_size)target_desc->string.length + 1);
target_desc       158 drivers/acpi/acpica/exstorob.c 		memcpy(target_desc->string.pointer, buffer, length);
target_desc       164 drivers/acpi/acpica/exstorob.c 		if (target_desc->string.pointer &&
target_desc       165 drivers/acpi/acpica/exstorob.c 		    (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) {
target_desc       169 drivers/acpi/acpica/exstorob.c 			ACPI_FREE(target_desc->string.pointer);
target_desc       172 drivers/acpi/acpica/exstorob.c 		target_desc->string.pointer =
target_desc       175 drivers/acpi/acpica/exstorob.c 		if (!target_desc->string.pointer) {
target_desc       179 drivers/acpi/acpica/exstorob.c 		target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;
target_desc       180 drivers/acpi/acpica/exstorob.c 		memcpy(target_desc->string.pointer, buffer, length);
target_desc       185 drivers/acpi/acpica/exstorob.c 	target_desc->string.length = length;