Lines Matching refs:source_desc
266 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, in acpi_ex_write_data_to_field() argument
279 if (!source_desc || !obj_desc) { in acpi_ex_write_data_to_field()
300 status = acpi_ex_write_gpio(source_desc, obj_desc, result_desc); in acpi_ex_write_data_to_field()
317 acpi_ex_write_serial_bus(source_desc, obj_desc, in acpi_ex_write_data_to_field()
335 source_desc->buffer.pointer, data_length); in acpi_ex_write_data_to_field()
357 switch (source_desc->common.type) { in acpi_ex_write_data_to_field()
360 buffer = &source_desc->integer.value; in acpi_ex_write_data_to_field()
361 buffer_length = sizeof(source_desc->integer.value); in acpi_ex_write_data_to_field()
366 buffer = source_desc->buffer.pointer; in acpi_ex_write_data_to_field()
367 buffer_length = source_desc->buffer.length; in acpi_ex_write_data_to_field()
372 buffer = source_desc->string.pointer; in acpi_ex_write_data_to_field()
373 buffer_length = source_desc->string.length; in acpi_ex_write_data_to_field()
382 source_desc, in acpi_ex_write_data_to_field()
383 acpi_ut_get_type_name(source_desc->common.type), in acpi_ex_write_data_to_field()
384 source_desc->common.type, buffer, buffer_length)); in acpi_ex_write_data_to_field()