Lines Matching refs:source_desc
262 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, in acpi_ex_write_data_to_field() argument
275 if (!source_desc || !obj_desc) { in acpi_ex_write_data_to_field()
296 status = acpi_ex_write_gpio(source_desc, obj_desc, result_desc); in acpi_ex_write_data_to_field()
309 acpi_ex_write_serial_bus(source_desc, obj_desc, in acpi_ex_write_data_to_field()
327 source_desc->buffer.pointer, data_length); in acpi_ex_write_data_to_field()
349 switch (source_desc->common.type) { in acpi_ex_write_data_to_field()
352 buffer = &source_desc->integer.value; in acpi_ex_write_data_to_field()
353 buffer_length = sizeof(source_desc->integer.value); in acpi_ex_write_data_to_field()
358 buffer = source_desc->buffer.pointer; in acpi_ex_write_data_to_field()
359 buffer_length = source_desc->buffer.length; in acpi_ex_write_data_to_field()
364 buffer = source_desc->string.pointer; in acpi_ex_write_data_to_field()
365 buffer_length = source_desc->string.length; in acpi_ex_write_data_to_field()
374 source_desc, in acpi_ex_write_data_to_field()
375 acpi_ut_get_type_name(source_desc->common.type), in acpi_ex_write_data_to_field()
376 source_desc->common.type, buffer, buffer_length)); in acpi_ex_write_data_to_field()