Lines Matching refs:write_value
393 union acpi_object write_value; in acpi_db_test_integer_type() local
420 write_value.type = ACPI_TYPE_INTEGER; in acpi_db_test_integer_type()
421 write_value.integer.value = value_to_write; in acpi_db_test_integer_type()
422 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
442 write_value.integer.value = temp1->integer.value; in acpi_db_test_integer_type()
443 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
496 union acpi_object write_value; in acpi_db_test_buffer_type() local
545 write_value.type = ACPI_TYPE_BUFFER; in acpi_db_test_buffer_type()
546 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
547 write_value.buffer.pointer = buffer; in acpi_db_test_buffer_type()
549 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
567 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
568 write_value.buffer.pointer = temp1->buffer.pointer; in acpi_db_test_buffer_type()
570 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
622 union acpi_object write_value; in acpi_db_test_string_type() local
638 write_value.type = ACPI_TYPE_STRING; in acpi_db_test_string_type()
639 write_value.string.length = strlen(value_to_write); in acpi_db_test_string_type()
640 write_value.string.pointer = value_to_write; in acpi_db_test_string_type()
642 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()
661 write_value.string.length = strlen(temp1->string.pointer); in acpi_db_test_string_type()
662 write_value.string.pointer = temp1->string.pointer; in acpi_db_test_string_type()
664 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()