Symbol: InodeAllocator
src/add-ons/kernel/file_systems/bfs/Inode.cpp
143
InodeAllocator(Transaction& transaction);
src/add-ons/kernel/file_systems/bfs/Inode.cpp
144
~InodeAllocator();
src/add-ons/kernel/file_systems/bfs/Inode.cpp
162
InodeAllocator::InodeAllocator(Transaction& transaction)
src/add-ons/kernel/file_systems/bfs/Inode.cpp
170
InodeAllocator::~InodeAllocator()
src/add-ons/kernel/file_systems/bfs/Inode.cpp
194
InodeAllocator::New(block_run* parentRun, mode_t mode, uint32 publishFlags,
src/add-ons/kernel/file_systems/bfs/Inode.cpp
232
InodeAllocator::CreateTree()
src/add-ons/kernel/file_systems/bfs/Inode.cpp
263
InodeAllocator::Keep(fs_vnode_ops* vnodeOps, uint32 publishFlags)
src/add-ons/kernel/file_systems/bfs/Inode.cpp
2764
InodeAllocator allocator(transaction);
src/add-ons/kernel/file_systems/bfs/Inode.cpp
296
InodeAllocator::_TransactionListener(int32 id, int32 event, void* _inode)
src/add-ons/kernel/file_systems/bfs/Inode.h
21
class InodeAllocator;
src/add-ons/kernel/file_systems/bfs/Inode.h
222
friend class InodeAllocator;
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
129
InodeAllocator::_AllocateInGroup(Transaction& transaction, uint32 blockGroup,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
184
InodeAllocator::_MarkInBitmap(Transaction& transaction, fsblock_t bitmapBlock,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
219
InodeAllocator::_UnmarkInBitmap(Transaction& transaction, fsblock_t bitmapBlock,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
244
InodeAllocator::_InitGroup(Transaction& transaction, ext2_block_group* group,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
263
InodeAllocator::_SetInodeBitmapChecksum(ext2_block_group* group, uint32 checksum)
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
32
InodeAllocator::InodeAllocator(Volume* volume)
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
40
InodeAllocator::~InodeAllocator()
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
47
InodeAllocator::New(Transaction& transaction, Inode* parent, int32 mode,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
59
InodeAllocator::Free(Transaction& transaction, ino_t id, bool isDirectory)
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
99
InodeAllocator::_Allocate(Transaction& transaction, uint32 preferredBlockGroup,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.h
21
class InodeAllocator {
src/add-ons/kernel/file_systems/ext2/InodeAllocator.h
23
InodeAllocator(Volume* volume);
src/add-ons/kernel/file_systems/ext2/InodeAllocator.h
24
virtual ~InodeAllocator();
src/add-ons/kernel/file_systems/ext2/Volume.h
166
InodeAllocator fInodeAllocator;