Searched refs:BlockRun (Results 1 – 14 of 14) sorted by relevance
/haiku/src/bin/bfs_tools/ |
H A D | recover.cpp | 78 bool success = fHashtable.Put(&inode->BlockRun(), inode); in Insert() 251 set->insert(node->BlockRun()); in collectInodes() 359 if (run == dir->BlockRun() || run == dir->Parent() in checkDirectoryContents() 375 missing->SetParent(dir->BlockRun()); in checkDirectoryContents() 389 dir->BlockRun().allocation_group, in checkDirectoryContents() 390 dir->BlockRun().start, name, in checkDirectoryContents() 398 if (missing->InodeBuffer()->parent != dir->BlockRun()) { in checkDirectoryContents() 402 missing->SetParent(dir->BlockRun()); in checkDirectoryContents() 411 empty->SetParent(dir->BlockRun()); in checkDirectoryContents() 450 node->Name(), node->BlockRun().allocation_group, in checkStructure() [all …]
|
H A D | bfswhich.cpp | 50 if (checkForBlockRunIntersection(inode->BlockRun(), checkForRun)) in checkNode() 122 inode->BlockRun().allocation_group, inode->BlockRun().start, in scanNode() 123 inode->BlockRun().length, name); in scanNode() 172 directory->BlockRun().allocation_group,directory in scanNodes() 173 ->BlockRun().start, in scanNodes()
|
H A D | chkindex.cpp | 118 directory->Name(),directory->BlockRun().allocation_group,directory->BlockRun().start, in collectFiles()
|
/haiku/src/add-ons/kernel/file_systems/bfs/ |
H A D | FileSystemVisitor.cpp | 150 fStack.Push(inode->BlockRun()); in Next() 174 bool visitingCurrentDirectory = inode->BlockRun() == fCurrent; in Next() 181 fCurrent = inode->BlockRun(); in Next() 227 fStack.Push(inode->BlockRun()); in Start()
|
H A D | CheckVisitor.cpp | 316 index->run = inode->BlockRun(); in VisitInode() 470 status_t status = _CheckAllocated(inode->BlockRun(), "inode"); in _CheckInodeBlocks() 718 GetVolume()->ToVnode(index->inode->BlockRun())); in _FreeIndices()
|
H A D | BlockAllocator.cpp | 995 uint16 group = inode->BlockRun().AllocationGroup(); in Allocate() 1018 start = inode->BlockRun().Start(); in Allocate() 1021 group = inode->BlockRun().AllocationGroup() + 1; in Allocate()
|
H A D | Inode.h | 99 const block_run& BlockRun() const in BlockRun() function
|
H A D | Volume.cpp | 394 return fBlockAllocator.AllocateForInode(transaction, &parent->BlockRun(), in AllocateForInode()
|
H A D | Inode.cpp | 2381 return fVolume->Free(transaction, BlockRun()); in Free() 2626 block_run parentRun = parent ? parent->BlockRun() : block_run::Run(0, 0, 0); in Create()
|
H A D | kernel_interface.cpp | 1310 inode->Parent() = newDirectory->BlockRun(); in bfs_rename()
|
/haiku/src/bin/bfs_tools/lib/ |
H A D | Inode.h | 34 bool IsRoot() const { return BlockRun() == fDisk->Root(); } in IsRoot() 41 { return fDisk->ToOffset(BlockRun()); } in Offset() 42 off_t Block() const { return fDisk->ToBlock(BlockRun()); } in Block() 43 const block_run& BlockRun() const { return fBlockRun; } in BlockRun() function
|
H A D | Inode.cpp | 966 sub << "__untitled " << BlockRun().allocation_group << ":" in CopyTo() 967 << (int32)BlockRun().start; in CopyTo() 970 printf("%" B_PRId32 ",%d -> %s\n", BlockRun().allocation_group, in CopyTo() 971 BlockRun().start, path.Path()); in CopyTo() 1096 sub << "__untitled " << BlockRun().allocation_group << ":" in CopyTo() 1097 << (int32)BlockRun().start; in CopyTo() 1273 name << "__file " << inode->BlockRun().allocation_group << ":" in AddEntry() 1274 << (int32)inode->BlockRun().start; in AddEntry() 1360 sub << "__symlink " << BlockRun().allocation_group << ":" in CopyTo() 1361 << (int32)BlockRun().start; in CopyTo()
|
/haiku/src/system/boot/platform/bios_ia32/ |
H A D | stage1.nasm | 130 struc BlockRun 151 .log_blocks nstruc BlockRun 155 .root_dir nstruc BlockRun 156 .indices nstruc BlockRun 162 .direct nstruc BlockRun, NUM_DIRECT_BLOCKS 164 .indirect nstruc BlockRun 166 .double_indirect nstruc BlockRun 174 .inode_num nstruc BlockRun 181 .parent nstruc BlockRun 182 .attributes nstruc BlockRun [all …]
|
/haiku/src/tests/add-ons/kernel/file_systems/bfs/btree/ |
H A D | Inode.h | 40 block_run BlockRun() const { return block_run::Run(0, 0, 0); } in BlockRun() function
|