2 * Copyright 2001-2008, pinc Software. All Rights Reserved.
3 * Released under the terms of the MIT license.
9 #include <SupportDefs.h>
21 status_t
SetTo(Disk
*disk
);
24 off_t
FreeBlocks() const;
25 off_t
UsedBlocks() const { return fUsedBlocks
; }
27 bool UsedAt(off_t block
) const;
28 bool BackupUsedAt(off_t block
) const;
29 bool BackupSetAt(off_t block
,bool used
);
30 void BackupSet(Inode
*inode
,bool used
);
33 status_t
CompareWithBackup();
34 bool TrustBlockContaining(off_t block
) const;
36 size_t Size() const { return fSize
; }
41 uint32
*fBackupBitmap
;