Lines Matching refs:temp2
391 union acpi_object *temp2 = NULL; in acpi_db_test_integer_type() local
429 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp2); in acpi_db_test_integer_type()
434 if (temp2->integer.value != value_to_write) { in acpi_db_test_integer_type()
436 ACPI_FORMAT_UINT64(temp2->integer.value), in acpi_db_test_integer_type()
465 if (temp2) { in acpi_db_test_integer_type()
466 acpi_os_free(temp2); in acpi_db_test_integer_type()
493 union acpi_object *temp2 = NULL; in acpi_db_test_buffer_type() local
556 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp2); in acpi_db_test_buffer_type()
561 if (memcmp(temp2->buffer.pointer, buffer, byte_length)) { in acpi_db_test_buffer_type()
591 if (temp2) { in acpi_db_test_buffer_type()
592 acpi_os_free(temp2); in acpi_db_test_buffer_type()
619 union acpi_object *temp2 = NULL; in acpi_db_test_string_type() local
649 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp2); in acpi_db_test_string_type()
654 if (strcmp(temp2->string.pointer, value_to_write)) { in acpi_db_test_string_type()
656 temp2->string.pointer, value_to_write); in acpi_db_test_string_type()
685 if (temp2) { in acpi_db_test_string_type()
686 acpi_os_free(temp2); in acpi_db_test_string_type()