Lines Matching refs:source_desc
264 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, in acpi_ex_write_data_to_field() argument
277 if (!source_desc || !obj_desc) { in acpi_ex_write_data_to_field()
298 status = acpi_ex_write_gpio(source_desc, obj_desc, result_desc); in acpi_ex_write_data_to_field()
313 acpi_ex_write_serial_bus(source_desc, obj_desc, in acpi_ex_write_data_to_field()
331 source_desc->buffer.pointer, data_length); in acpi_ex_write_data_to_field()
353 switch (source_desc->common.type) { in acpi_ex_write_data_to_field()
356 buffer = &source_desc->integer.value; in acpi_ex_write_data_to_field()
357 buffer_length = sizeof(source_desc->integer.value); in acpi_ex_write_data_to_field()
362 buffer = source_desc->buffer.pointer; in acpi_ex_write_data_to_field()
363 buffer_length = source_desc->buffer.length; in acpi_ex_write_data_to_field()
368 buffer = source_desc->string.pointer; in acpi_ex_write_data_to_field()
369 buffer_length = source_desc->string.length; in acpi_ex_write_data_to_field()
378 source_desc, in acpi_ex_write_data_to_field()
379 acpi_ut_get_type_name(source_desc->common.type), in acpi_ex_write_data_to_field()
380 source_desc->common.type, buffer, buffer_length)); in acpi_ex_write_data_to_field()