Lines Matching refs:temp2
428 union acpi_object *temp2 = NULL; in acpi_db_test_integer_type() local
466 status = acpi_db_read_from_object(node, ACPI_TYPE_INTEGER, &temp2); in acpi_db_test_integer_type()
471 if (temp2->integer.value != value_to_write) { in acpi_db_test_integer_type()
473 ACPI_FORMAT_UINT64(temp2->integer.value), in acpi_db_test_integer_type()
502 if (temp2) { in acpi_db_test_integer_type()
503 acpi_os_free(temp2); in acpi_db_test_integer_type()
530 union acpi_object *temp2 = NULL; in acpi_db_test_buffer_type() local
592 status = acpi_db_read_from_object(node, ACPI_TYPE_BUFFER, &temp2); in acpi_db_test_buffer_type()
597 if (memcmp(temp2->buffer.pointer, buffer, byte_length)) { in acpi_db_test_buffer_type()
627 if (temp2) { in acpi_db_test_buffer_type()
628 acpi_os_free(temp2); in acpi_db_test_buffer_type()
655 union acpi_object *temp2 = NULL; in acpi_db_test_string_type() local
684 status = acpi_db_read_from_object(node, ACPI_TYPE_STRING, &temp2); in acpi_db_test_string_type()
689 if (strcmp(temp2->string.pointer, value_to_write)) { in acpi_db_test_string_type()
691 temp2->string.pointer, value_to_write); in acpi_db_test_string_type()
720 if (temp2) { in acpi_db_test_string_type()
721 acpi_os_free(temp2); in acpi_db_test_string_type()