Home
last modified time | relevance | path

Searched refs:BlockRun (Results 1 – 14 of 14) sorted by relevance

/haiku/src/bin/bfs_tools/
H A Drecover.cpp78 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 Dbfswhich.cpp50 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 Dchkindex.cpp118 directory->Name(),directory->BlockRun().allocation_group,directory->BlockRun().start, in collectFiles()
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DFileSystemVisitor.cpp150 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 DCheckVisitor.cpp316 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 DBlockAllocator.cpp995 uint16 group = inode->BlockRun().AllocationGroup(); in Allocate()
1018 start = inode->BlockRun().Start(); in Allocate()
1021 group = inode->BlockRun().AllocationGroup() + 1; in Allocate()
H A DInode.h99 const block_run& BlockRun() const in BlockRun() function
H A DVolume.cpp394 return fBlockAllocator.AllocateForInode(transaction, &parent->BlockRun(), in AllocateForInode()
H A DInode.cpp2381 return fVolume->Free(transaction, BlockRun()); in Free()
2626 block_run parentRun = parent ? parent->BlockRun() : block_run::Run(0, 0, 0); in Create()
H A Dkernel_interface.cpp1310 inode->Parent() = newDirectory->BlockRun(); in bfs_rename()
/haiku/src/bin/bfs_tools/lib/
H A DInode.h34 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 DInode.cpp966 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 Dstage1.nasm130 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 DInode.h40 block_run BlockRun() const { return block_run::Run(0, 0, 0); } in BlockRun() function