Home
last modified time | relevance | path

Searched refs:FSBM_Bitmap (Results 1 – 10 of 10) sorted by relevance

/reactos/drivers/filesystems/udfs/udf_info/
H A Dalloc.cpp586 cur = (uint32*)(Vcb->FSBM_Bitmap);
730 if(!UDFGetUsedBit(Vcb->FSBM_Bitmap, lba+j)) {
746 if(!UDFGetFreeBit(Vcb->FSBM_Bitmap, lba+j)) {
772 Vcb->FSBM_Bitmap[j] &= ~Vcb->BSBM_Bitmap[j];
851 bit_before = UDFGetBit(Vcb->FSBM_Bitmap, lba-1);
852 bit_after = UDFGetBit(Vcb->FSBM_Bitmap, lba+len);
861 UDFSetUsedBits(Vcb->FSBM_Bitmap, lba, len);
864 ASSERT(UDFGetUsedBit(Vcb->FSBM_Bitmap, lba+j));
883 UDFSetFreeBits(Vcb->FSBM_Bitmap, lba, len);
1094 PUCHAR cur = (PUCHAR)(Vcb->FSBM_Bitmap);
[all …]
H A Dmount.cpp221 new_bm = Vcb->FSBM_Bitmap; in UDFUpdateXSpaceBitmaps()
969 …if(Vcb->FSBM_ByteCount == RtlCompareMemory(Vcb->FSBM_Bitmap, Vcb->FSBM_OldBitmap, Vcb->FSBM_ByteCo… in UDFUmount__()
991 RtlCopyMemory(Vcb->FSBM_OldBitmap, Vcb->FSBM_Bitmap, Vcb->FSBM_ByteCount); in UDFUmount__()
1628 UDFSetFreeBit(Vcb->FSBM_Bitmap, i); in UDFAddXSpaceBitmap()
1926 if(!(Vcb->FSBM_Bitmap)) { in UDFBuildFreeSpaceBitmap()
1928 … Vcb->FSBM_Bitmap = (int8*)DbgAllocatePool(NonPagedPool, (i = (Vcb->LastPossibleLBA+1+7)>>3) ); in UDFBuildFreeSpaceBitmap()
1929 if(!(Vcb->FSBM_Bitmap)) return STATUS_INSUFFICIENT_RESOURCES; in UDFBuildFreeSpaceBitmap()
1936 MyFreePool__(Vcb->FSBM_Bitmap); in UDFBuildFreeSpaceBitmap()
1937 Vcb->FSBM_Bitmap = NULL; in UDFBuildFreeSpaceBitmap()
1941 RtlZeroMemory(Vcb->FSBM_Bitmap, i); in UDFBuildFreeSpaceBitmap()
[all …]
H A Dphys_eject.cpp357 …if(Vcb->FSBM_ByteCount != RtlCompareMemory(Vcb->FSBM_Bitmap, Vcb->FSBM_OldBitmap, Vcb->FSBM_ByteCo… in UDFEjectReqWaiter()
396 … RtlCopyMemory(Vcb->FSBM_OldBitmap, Vcb->FSBM_Bitmap, Vcb->FSBM_ByteCount); in UDFEjectReqWaiter()
H A Dudf_info.cpp2862 … UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), FileInfo->Dloc->FELoc.Mapping[0].extLocation)) { in UDFCreateFile__()
3070 … UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), FileInfo->Dloc->FELoc.Mapping[0].extLocation)) { in UDFCloseFile__()
3097 … UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), FileInfo->Dloc->FELoc.Mapping[0].extLocation)) { in UDFCloseFile__()
3164 …ASSERT(UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), FileInfo->Dloc->FELoc.Mapping[0].extLocation)); in UDFCloseFile__()
3758 UDFSetFreeBit(Vcb->FSBM_Bitmap, root+i); in UDFLoadVAT()
3765 UDFSetFreeBit(Vcb->FSBM_Bitmap, i); in UDFLoadVAT()
3767 UDFSetUsedBit(Vcb->FSBM_Bitmap, i); in UDFLoadVAT()
4143 … UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), FileInfo->Dloc->FELoc.Mapping[0].extLocation)) { in UDFFlushFile__()
5072 if(UDFGetFreeBit(Vcb->FSBM_Bitmap, root+i)) in UDFRecordVAT()
H A Dextent.cpp2393 if((lba < pe) && UDFGetFreeBit(Vcb->FSBM_Bitmap, lba)) { in UDFResizeExtent()
2394 … s += UDFGetBitmapLen((uint32*)(Vcb->FSBM_Bitmap), lba, min(pe, lba+req_s-1)); in UDFResizeExtent()
2465 if((lba < pe) && UDFGetFreeBit(Vcb->FSBM_Bitmap, lba)) { in UDFResizeExtent()
2466 … s += (d = UDFGetBitmapLen((uint32*)(Vcb->FSBM_Bitmap), lba, min(pe, lba+req_s-1))); in UDFResizeExtent()
H A Dremap.cpp442 bm = (uint32*)(Vcb->FSBM_Bitmap); in UDFVRead()
H A Ddirtree.cpp701 … UDFGetFreeBit(((uint32*)(Vcb->FSBM_Bitmap)), UDFPartLbaToPhys(Vcb, &(DirNdx->FileEntryLoc)) )) { in UDFIndexDirectory()
/reactos/drivers/filesystems/udfs/Include/
H A Dudf_common.h371 PCHAR FSBM_Bitmap; // 0 - free, 1 - used member
H A Dphys_lib.cpp233 if(Vcb->FSBM_Bitmap) { in UDFTIOVerify()
234 if(UDFGetFreeBit((uint32*)(Vcb->FSBM_Bitmap), lba0+i)) { in UDFTIOVerify()
333 if(Vcb->FSBM_Bitmap) { in UDFTIOVerify()
334 UDFSetUsedBit(Vcb->FSBM_Bitmap, lba0+i); in UDFTIOVerify()
1618 bm = (uint32*)(Vcb->FSBM_Bitmap); in UDFRecoverFromError()
/reactos/drivers/filesystems/udfs/
H A Dfscntrl.cpp1449 if(Vcb->FSBM_Bitmap) { in UDFCleanupVCB()
1450 DbgFreePool(Vcb->FSBM_Bitmap); in UDFCleanupVCB()
1451 Vcb->FSBM_Bitmap = NULL; in UDFCleanupVCB()
2167 FSBM = (PULONG)(Vcb->FSBM_Bitmap); in UDFGetVolumeBitmap()