Searched refs:FindBlock (Results 1 - 25 of 31) sorted by relevance

12

/haiku/src/add-ons/kernel/file_systems/exfat/
H A DDataStream.h26 status_t FindBlock(off_t pos, off_t& physical,
H A DDataStream.cpp42 DataStream::FindBlock(off_t pos, off_t& physical, off_t *_length) function in class:DataStream
45 TRACE("FindBlock: offset larger than size\n");
H A DInode.cpp166 Inode::FindBlock(off_t pos, off_t& physical, off_t *_length) function in class:Inode
169 return stream.FindBlock(pos, physical, _length);
H A DInode.h80 status_t FindBlock(off_t logical, off_t& physical,
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DChunk.h25 status_t FindBlock(off_t logical, off_t& physical);
H A DVolume.h72 status_t FindBlock(off_t logical, fsblock_t& physical);
73 status_t FindBlock(off_t logical, off_t& physical);
H A DChunk.cpp67 Chunk::FindBlock(off_t logical, off_t& physical) function in class:Chunk
H A DVolume.cpp459 Volume::FindBlock(off_t logical, fsblock_t& physicalBlock) function in class:Volume
462 status_t status = FindBlock(logical, physical);
471 Volume::FindBlock(off_t logical, off_t& physical) function in class:Volume
477 return fChunk->FindBlock(logical, physical);
493 status = _chunk.FindBlock(logical, physical);
496 TRACE("Volume::FindBlock(): logical: %" B_PRIdOFF ", physical: %" B_PRIdOFF
533 return FindBlock(logical, physical);
H A DInode.h65 status_t FindBlock(off_t logical, off_t& physical,
H A DBTree.cpp594 status = fVolume->FindBlock(node.Index(slot)->LogicalAddress(),
784 status_t status = fVolume->FindBlock(
823 status_t status = fVolume->FindBlock(
845 if (fVolume->FindBlock(logical, fRootBlock) != B_OK) {
H A DInode.cpp173 Inode::FindBlock(off_t pos, off_t& physical, off_t* _length) function in class:Inode
185 ERROR("Inode::FindBlock(): Couldn't find extent_data 0x%" B_PRIx32
190 TRACE("Inode::FindBlock(%" B_PRIdINO ") key.Offset() %" B_PRId64 "\n",
199 status = fVolume->FindBlock(logical, physical);
202 TRACE("Inode::FindBlock(%" B_PRIdINO ") %" B_PRIdOFF " physical %"
243 ERROR("Inode::FindBlock(): Couldn't find extent_data 0x%" B_PRIx32
/haiku/src/add-ons/kernel/file_systems/udf/
H A DMetadataPartition.cpp61 status_t status = fMetadataIcb->FindBlock(logicalBlock, block, isRecorded);
65 status = fMetadataMirrorIcb->FindBlock(logicalBlock, block, isRecorded);
H A DIcb.h108 status_t FindBlock(uint32 logicalBlock, off_t &block,
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DExtentStream.h27 status_t FindBlock(off_t offset, fsblock_t& block,
H A DInodeJournal.cpp89 return fInode->FindBlock(logical * fBlockSize, physical);
H A DHTreeEntryIterator.cpp40 fInitStatus = fDirectory->FindBlock(offset, fBlockNum);
204 status_t status = fDirectory->FindBlock(start->Block() * fBlockSize,
248 status = fDirectory->FindBlock(logicalBlock * fBlockSize, fBlockNum);
338 status_t status = fDirectory->FindBlock(newBlocksPos, physicalBlock);
H A DDataStream.h26 status_t FindBlock(off_t offset, fsblock_t& block,
H A DDirectoryIterator.cpp67 fInitStatus = fDirectory->FindBlock(start, fPhysicalBlock);
204 status = fDirectory->FindBlock(_Offset(), fPhysicalBlock);
239 return fDirectory->FindBlock(0, fPhysicalBlock);
281 status = fDirectory->FindBlock(_Offset(), fPhysicalBlock);
312 status = fDirectory->FindBlock(fLogicalBlock * fBlockSize, fPhysicalBlock);
568 status_t status = fDirectory->FindBlock(0, firstPhysicalBlock);
578 status = fDirectory->FindBlock(fBlockSize, fPhysicalBlock);
750 status = fDirectory->FindBlock(fLogicalBlock * fBlockSize,
769 status = fDirectory->FindBlock(fDirectory->Size() - 1, fPhysicalBlock);
H A DInode.cpp227 Inode::FindBlock(off_t offset, fsblock_t& block, uint32 *_count) function in class:Inode
231 return stream.FindBlock(offset, block, _count);
234 return stream.FindBlock(offset, block, _count);
409 status = stream.FindBlock(0, blockNum);
412 status = stream.FindBlock(0, blockNum);
H A DHTree.cpp88 status_t status = fDirectory->FindBlock(0, blockNum);
116 status_t status = fDirectory->FindBlock(0, blockNum);
H A DInode.h88 status_t FindBlock(off_t offset, fsblock_t& block,
/haiku/src/system/boot/loader/file_systems/fat/
H A DStream.h49 status_t FindBlock(off_t pos, off_t &block, off_t &offset);
H A DStream.cpp212 Stream::FindBlock(off_t pos, off_t &block, off_t &offset) function in class:Stream
262 if (FindBlock(pos, num, offset) < B_OK) {
298 if (FindBlock(pos, num, offset) < B_OK) {
336 if (FindBlock(pos, num, offset) < B_OK) {
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A DInode.cpp117 pos = FindBlock(startBlockNumber, blockOffset);
128 pos = FindBlock(startBlockNumber, blockOffset);
137 Inode::FindBlock(off_t blockNumber, off_t blockOffset) function in class:Inode
H A DInode.h121 off_t FindBlock(off_t block_number, off_t block_offset);

Completed in 96 milliseconds

12