Lines Matching refs:write_value

430 	union acpi_object write_value;  in acpi_db_test_integer_type()  local
457 write_value.type = ACPI_TYPE_INTEGER; in acpi_db_test_integer_type()
458 write_value.integer.value = value_to_write; in acpi_db_test_integer_type()
459 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
479 write_value.integer.value = temp1->integer.value; in acpi_db_test_integer_type()
480 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
533 union acpi_object write_value; in acpi_db_test_buffer_type() local
581 write_value.type = ACPI_TYPE_BUFFER; in acpi_db_test_buffer_type()
582 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
583 write_value.buffer.pointer = buffer; in acpi_db_test_buffer_type()
585 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
603 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
604 write_value.buffer.pointer = temp1->buffer.pointer; in acpi_db_test_buffer_type()
606 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
658 union acpi_object write_value; in acpi_db_test_string_type() local
673 write_value.type = ACPI_TYPE_STRING; in acpi_db_test_string_type()
674 write_value.string.length = strlen(value_to_write); in acpi_db_test_string_type()
675 write_value.string.pointer = value_to_write; in acpi_db_test_string_type()
677 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()
696 write_value.string.length = strlen(temp1->string.pointer); in acpi_db_test_string_type()
697 write_value.string.pointer = temp1->string.pointer; in acpi_db_test_string_type()
699 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()