Symbol: ExtentAllocator
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
513
ExtentAllocator::ExtentAllocator(Volume* volume)
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
524
ExtentAllocator::~ExtentAllocator()
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
532
ExtentAllocator::_LoadExtentTree(uint64 flags)
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
576
ExtentAllocator::Initialize()
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
610
ExtentAllocator::_Allocate(uint64& found, uint64 start, uint64 size,
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
647
ExtentAllocator::AllocateTreeBlock(uint64& found, uint64 start, uint64 flags)
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
678
ExtentAllocator::AllocateDataBlock(uint64& found, uint64 size, uint64 start,
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
138
class ExtentAllocator {
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
140
ExtentAllocator(Volume* volume);
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
141
~ExtentAllocator();
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
151
ExtentAllocator(const ExtentAllocator&);
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
152
ExtentAllocator& operator=(const ExtentAllocator&);
src/add-ons/kernel/file_systems/btrfs/Volume.cpp
307
fExtentAllocator = new(std::nothrow) ExtentAllocator(this);
src/add-ons/kernel/file_systems/btrfs/Volume.h
23
class ExtentAllocator;
src/add-ons/kernel/file_systems/btrfs/Volume.h
58
ExtentAllocator* GetAllocator() const { return fExtentAllocator; }
src/add-ons/kernel/file_systems/btrfs/Volume.h
93
ExtentAllocator* fExtentAllocator;