Lines Matching defs:result
616 BdrvCheckResult result;
618 ret = bdrv_check(bs, &result, fix);
625 check->check_errors = result.check_errors;
626 check->corruptions = result.corruptions;
627 check->has_corruptions = result.corruptions != 0;
628 check->leaks = result.leaks;
629 check->has_leaks = result.leaks != 0;
630 check->corruptions_fixed = result.corruptions_fixed;
631 check->has_corruptions_fixed = result.corruptions_fixed != 0;
632 check->leaks_fixed = result.leaks_fixed;
633 check->has_leaks_fixed = result.leaks_fixed != 0;
634 check->image_end_offset = result.image_end_offset;
635 check->has_image_end_offset = result.image_end_offset != 0;
636 check->total_clusters = result.bfi.total_clusters;
637 check->has_total_clusters = result.bfi.total_clusters != 0;
638 check->allocated_clusters = result.bfi.allocated_clusters;
639 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
640 check->fragmented_clusters = result.bfi.fragmented_clusters;
641 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
642 check->compressed_clusters = result.bfi.compressed_clusters;
643 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;