Lines Matching refs:write_value

445 	union acpi_object write_value;  in acpi_db_test_integer_type()  local
473 write_value.type = ACPI_TYPE_INTEGER; in acpi_db_test_integer_type()
474 write_value.integer.value = value_to_write; in acpi_db_test_integer_type()
475 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
495 write_value.integer.value = temp1->integer.value; in acpi_db_test_integer_type()
496 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_integer_type()
549 union acpi_object write_value; in acpi_db_test_buffer_type() local
597 write_value.type = ACPI_TYPE_BUFFER; in acpi_db_test_buffer_type()
598 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
599 write_value.buffer.pointer = buffer; in acpi_db_test_buffer_type()
601 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
619 write_value.buffer.length = byte_length; in acpi_db_test_buffer_type()
620 write_value.buffer.pointer = temp1->buffer.pointer; in acpi_db_test_buffer_type()
622 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_buffer_type()
674 union acpi_object write_value; in acpi_db_test_string_type() local
689 write_value.type = ACPI_TYPE_STRING; in acpi_db_test_string_type()
690 write_value.string.length = strlen(value_to_write); in acpi_db_test_string_type()
691 write_value.string.pointer = value_to_write; in acpi_db_test_string_type()
693 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()
712 write_value.string.length = strlen(temp1->string.pointer); in acpi_db_test_string_type()
713 write_value.string.pointer = temp1->string.pointer; in acpi_db_test_string_type()
715 status = acpi_db_write_to_object(node, &write_value); in acpi_db_test_string_type()