Symbol: BlockAllocator
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1060
BlockAllocator::AllocateForInode(Transaction& transaction,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1079
BlockAllocator::Allocate(Transaction& transaction, Inode* inode,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1140
BlockAllocator::AllocateBlockRun(Transaction& transaction, block_run run)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1178
BlockAllocator::Free(Transaction& transaction, block_run run)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1240
BlockAllocator::Fragment()
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1271
BlockAllocator::_CheckGroup(int32 groupIndex) const
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1344
BlockAllocator::Trim(uint64 offset, uint64 size, uint64& trimmedSize)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1430
BlockAllocator::CheckBlocks(off_t start, off_t length, bool allocated,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1478
BlockAllocator::IsValidBlockRun(block_run run, const char* type)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1495
BlockAllocator::CheckBlockRun(block_run run, const char* type, bool allocated)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1513
BlockAllocator::_AddTrim(fs_trim_data& trimData, uint32 maxRanges,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1529
BlockAllocator::_TrimNext(fs_trim_data& trimData, uint32 maxRanges,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1567
BlockAllocator::Dump(int32 index)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1652
BlockAllocator& allocator = volume->Allocator();
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
210
friend class BlockAllocator;
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
529
BlockAllocator::BlockAllocator(Volume* volume)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
540
BlockAllocator::~BlockAllocator()
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
548
BlockAllocator::Initialize(bool full)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
564
thread_id id = spawn_kernel_thread((thread_func)BlockAllocator::_Initialize,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
576
BlockAllocator::InitializeAndClearBitmap(Transaction& transaction)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
642
BlockAllocator::Reinitialize()
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
664
BlockAllocator::_Initialize(BlockAllocator* allocator)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
762
BlockAllocator::Uninitialize()
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
776
BlockAllocator::SetAllowedRange(off_t beginBlock, off_t endBlock)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
785
BlockAllocator::IsCompletelyInsideAllowedRange(block_run run) const
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
795
BlockAllocator::IsCompletelyOutsideAllowedRange(block_run run) const
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
814
BlockAllocator::AllocateBlocks(Transaction& transaction, int32 groupIndex,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.h
24
class BlockAllocator {
src/add-ons/kernel/file_systems/bfs/BlockAllocator.h
26
BlockAllocator(Volume* volume);
src/add-ons/kernel/file_systems/bfs/BlockAllocator.h
27
~BlockAllocator();
src/add-ons/kernel/file_systems/bfs/BlockAllocator.h
85
static status_t _Initialize(BlockAllocator* self);
src/add-ons/kernel/file_systems/bfs/CheckVisitor.cpp
608
BlockAllocator& allocator = GetVolume()->Allocator();
src/add-ons/kernel/file_systems/bfs/CheckVisitor.h
17
class BlockAllocator;
src/add-ons/kernel/file_systems/bfs/Journal.cpp
1148
BlockAllocator& allocator = fVolume->Allocator();
src/add-ons/kernel/file_systems/bfs/Volume.h
105
BlockAllocator& Allocator();
src/add-ons/kernel/file_systems/bfs/Volume.h
163
BlockAllocator fBlockAllocator;
src/add-ons/kernel/file_systems/bfs/Volume.h
203
inline BlockAllocator&
src/add-ons/kernel/file_systems/bfs/kernel_interface.cpp
800
BlockAllocator& allocator = volume->Allocator();
src/add-ons/kernel/file_systems/bfs/kernel_interface.cpp
811
BlockAllocator& allocator = volume->Allocator();
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
584
BlockAllocator::BlockAllocator(Volume* volume)
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
597
BlockAllocator::~BlockAllocator()
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
607
BlockAllocator::Initialize()
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
630
(thread_func)BlockAllocator::_Initialize, "ext2 block allocator",
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
645
BlockAllocator::AllocateBlocks(Transaction& transaction, uint32 minimum,
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
731
BlockAllocator::Allocate(Transaction& transaction, Inode* inode,
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
809
BlockAllocator::Free(Transaction& transaction, fsblock_t start, uint32 length)
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
866
BlockAllocator::_Initialize(BlockAllocator* allocator)
src/add-ons/kernel/file_systems/ext2/BlockAllocator.h
23
class BlockAllocator {
src/add-ons/kernel/file_systems/ext2/BlockAllocator.h
25
BlockAllocator(Volume* volume);
src/add-ons/kernel/file_systems/ext2/BlockAllocator.h
26
~BlockAllocator();
src/add-ons/kernel/file_systems/ext2/BlockAllocator.h
42
static status_t _Initialize(BlockAllocator* allocator);
src/add-ons/kernel/file_systems/ext2/Volume.cpp
313
fBlockAllocator = new(std::nothrow) BlockAllocator(this);
src/add-ons/kernel/file_systems/ext2/Volume.h
165
BlockAllocator* fBlockAllocator;
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
164
BlockAllocator::Allocate(uint64 baseHint, uint64 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
197
BlockAllocator::AllocateExactly(uint64 base, uint64 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
219
BlockAllocator::Free(uint64 base, uint64 count, Transaction& transaction)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
232
BlockAllocator::ResetFreeBlocks(uint64 count)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
259
BlockAllocator::_Allocate(uint64 base, uint64 searchEnd, uint64 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
355
BlockAllocator::_AllocateInGroup(uint64 base, uint64 searchEnd, uint32 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
46
BlockAllocator::BlockAllocator(Volume* volume)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
485
BlockAllocator::_AllocateInBitmapBlock(uint64 base, uint32 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
58
BlockAllocator::~BlockAllocator()
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
588
BlockAllocator::_Free(uint64 base, uint64 count, Transaction& transaction)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
618
BlockAllocator::_FreeInGroup(uint64 base, uint32 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
65
BlockAllocator::Init(uint64 blockBitmap, uint64 freeBlocks)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
665
BlockAllocator::_FreeInBitmapBlock(uint64 base, uint32 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
723
BlockAllocator::_UpdateSuperBlock(Transaction& transaction)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
82
BlockAllocator::Initialize(Transaction& transaction)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
114
BlockAllocator* fAllocator;
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
16
class BlockAllocator {
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
18
BlockAllocator(Volume* volume);
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
19
~BlockAllocator();
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
77
AllocatedBlock(BlockAllocator* allocator, Transaction& transaction)
src/tests/system/kernel/file_corruption/fs/Volume.cpp
475
fBlockAllocator = new(std::nothrow) BlockAllocator(this);
src/tests/system/kernel/file_corruption/fs/Volume.h
16
class BlockAllocator;
src/tests/system/kernel/file_corruption/fs/Volume.h
69
inline BlockAllocator* GetBlockAllocator() const
src/tests/system/kernel/file_corruption/fs/Volume.h
88
BlockAllocator* fBlockAllocator;