Home
last modified time | relevance | path

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

/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DVolume.cpp88 fChunkTree(NULL) in Volume()
185 fChunkTree = new(std::nothrow) BTree(this); in Mount()
186 if (fChunkTree == NULL) in Mount()
188 fChunkTree->SetRoot(fSuperBlock.ChunkRoot(), NULL); in Mount()
190 ")\n", fSuperBlock.ChunkRoot(), fChunkTree->RootBlock()); in Mount()
415 delete fChunkTree; in Unmount()
423 fChunkTree = NULL; in Unmount()
473 if (fChunkTree == NULL in FindBlock()
485 BTree::Path path(fChunkTree); in FindBlock()
486 status_t status = fChunkTree->FindPrevious(&path, search_key, in FindBlock()
H A DVolume.h96 BTree* fChunkTree; variable