Lines Matching refs:source_desc

331 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,  in acpi_ex_write_data_to_field()  argument
346 if (!source_desc || !obj_desc) { in acpi_ex_write_data_to_field()
379 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_write_data_to_field()
382 acpi_ut_get_object_type_name(source_desc))); in acpi_ex_write_data_to_field()
415 if (source_desc->buffer.length < length) { in acpi_ex_write_data_to_field()
418 length, source_desc->buffer.length)); in acpi_ex_write_data_to_field()
431 memcpy(buffer, source_desc->buffer.pointer, length); in acpi_ex_write_data_to_field()
458 if (source_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ex_write_data_to_field()
464 acpi_ut_get_type_name(source_desc->common. in acpi_ex_write_data_to_field()
466 source_desc->common.type, in acpi_ex_write_data_to_field()
467 (u32)source_desc->integer.value, in acpi_ex_write_data_to_field()
471 buffer = &source_desc->integer.value; in acpi_ex_write_data_to_field()
487 switch (source_desc->common.type) { in acpi_ex_write_data_to_field()
490 buffer = &source_desc->integer.value; in acpi_ex_write_data_to_field()
491 length = sizeof(source_desc->integer.value); in acpi_ex_write_data_to_field()
496 buffer = source_desc->buffer.pointer; in acpi_ex_write_data_to_field()
497 length = source_desc->buffer.length; in acpi_ex_write_data_to_field()
502 buffer = source_desc->string.pointer; in acpi_ex_write_data_to_field()
503 length = source_desc->string.length; in acpi_ex_write_data_to_field()
513 source_desc, in acpi_ex_write_data_to_field()
514 acpi_ut_get_type_name(source_desc->common.type), in acpi_ex_write_data_to_field()
515 source_desc->common.type, buffer, length)); in acpi_ex_write_data_to_field()