Home
last modified time | relevance | path

Searched refs:fExtentAllocator (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DVolume.cpp281 fExtentAllocator = NULL; in Mount()
289 fExtentAllocator = new(std::nothrow) ExtentAllocator(this); in Mount()
290 if (fExtentAllocator == NULL) in Mount()
292 status = fExtentAllocator->Initialize(); in Mount()
420 delete fExtentAllocator; in Unmount()
428 fExtentAllocator = NULL; in Unmount()
529 status_t status = fExtentAllocator->AllocateTreeBlock(logical, start, flags); in GetNewBlock()
H A DVolume.h58 ExtentAllocator* GetAllocator() const { return fExtentAllocator; } in GetAllocator()
93 ExtentAllocator* fExtentAllocator; variable