Lines Matching refs:temp2
443 union acpi_object *temp2 = NULL; in acpi_db_test_integer_type() local
482 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp2); in acpi_db_test_integer_type()
487 if (temp2->integer.value != value_to_write) { in acpi_db_test_integer_type()
489 ACPI_FORMAT_UINT64(temp2->integer.value), in acpi_db_test_integer_type()
518 if (temp2) { in acpi_db_test_integer_type()
519 acpi_os_free(temp2); in acpi_db_test_integer_type()
546 union acpi_object *temp2 = NULL; in acpi_db_test_buffer_type() local
608 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp2); in acpi_db_test_buffer_type()
613 if (memcmp(temp2->buffer.pointer, buffer, byte_length)) { in acpi_db_test_buffer_type()
643 if (temp2) { in acpi_db_test_buffer_type()
644 acpi_os_free(temp2); in acpi_db_test_buffer_type()
671 union acpi_object *temp2 = NULL; in acpi_db_test_string_type() local
700 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp2); in acpi_db_test_string_type()
705 if (strcmp(temp2->string.pointer, value_to_write)) { in acpi_db_test_string_type()
707 temp2->string.pointer, value_to_write); in acpi_db_test_string_type()
736 if (temp2) { in acpi_db_test_string_type()
737 acpi_os_free(temp2); in acpi_db_test_string_type()