Symbol: block_cache_get
headers/os/drivers/fs_cache.h
77
extern const void *block_cache_get(void *cache, off_t blockNumber);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
469
block = fBlock = (uint8*)block_cache_get(volume->BlockCache(), newBlockNumber);
src/add-ons/kernel/file_systems/bfs/Journal.cpp
839
const void* data = block_cache_get(fVolume->BlockCache(),
src/add-ons/kernel/file_systems/btrfs/BTree.cpp
67
fNode = (btrfs_stream*)block_cache_get(fVolume->BlockCache(), block);
src/add-ons/kernel/file_systems/btrfs/CachedBlock.h
108
return fBlock = (uint8*)block_cache_get(fVolume->BlockCache(), block);
src/add-ons/kernel/file_systems/exfat/CachedBlock.h
94
return fBlock = (uint8 *)block_cache_get(fVolume->BlockCache(), block);
src/add-ons/kernel/file_systems/ext2/CachedBlock.h
102
return fBlock = (uint8 *)block_cache_get(fVolume->BlockCache(), block);
src/add-ons/kernel/file_systems/fat/bsd/kern/vfs_bio.c
410
newBuf->b_data = (void*)block_cache_get(blockCache, cachedBlock);
src/add-ons/kernel/file_systems/fat/bsd/kern/vfs_bio.c
437
newBuf->b_bcpointers[i] = (void*)block_cache_get(blockCache, cachedBlock + i);
src/add-ons/kernel/file_systems/iso9660/iso9660.cpp
545
char* buffer = (char*)block_cache_get(volume->fBlockCache,
src/add-ons/kernel/file_systems/iso9660/iso9660.cpp
766
= (char*)block_cache_get(volume->fBlockCache, cookie->block);
src/add-ons/kernel/file_systems/iso9660/kernel_interface.cpp
281
char* blockData = (char*)block_cache_get(volume->fBlockCache, block);
src/add-ons/kernel/file_systems/iso9660/kernel_interface.cpp
369
char* data = (char*)block_cache_get(volume->fBlockCache, block);
src/add-ons/kernel/file_systems/reiserfs/BlockCache.cpp
201
return const_cast<void*>(block_cache_get(fCacheHandle, number));
src/tests/add-ons/kernel/file_systems/bfs/btree/cache.h
26
extern const void* block_cache_get(void* _cache, off_t blockNumber);
src/tests/system/kernel/cache/block_cache_test.cpp
487
block_cache_get(gCache, 0);
src/tests/system/kernel/file_corruption/fs/Block.cpp
36
block_cache_get(volume->BlockCache(), blockIndex), NULL);
src/tests/system/kernel/file_corruption/fs/Transaction.cpp
317
info->data = block_cache_get(fVolume->BlockCache(), blockIndex);