/haiku/src/tests/add-ons/kernel/file_systems/bfs/btree/ |
H A D | cache.h | 26 extern const void* block_cache_get(void* _cache, off_t blockNumber);
|
H A D | cache.cpp | 118 block_cache_get(void* _cache, off_t blockNumber) in block_cache_get() function
|
/haiku/src/add-ons/kernel/file_systems/exfat/ |
H A D | CachedBlock.h | 94 return fBlock = (uint8 *)block_cache_get(fVolume->BlockCache(), block); in SetTo()
|
/haiku/src/add-ons/kernel/file_systems/btrfs/ |
H A D | CachedBlock.h | 108 return fBlock = (uint8*)block_cache_get(fVolume->BlockCache(), block); in SetTo()
|
H A D | BTree.cpp | 67 fNode = (btrfs_stream*)block_cache_get(fVolume->BlockCache(), block); in SetTo()
|
/haiku/src/add-ons/kernel/file_systems/ext2/ |
H A D | CachedBlock.h | 102 return fBlock = (uint8 *)block_cache_get(fVolume->BlockCache(), block); in SetTo()
|
/haiku/src/tests/system/kernel/file_corruption/fs/ |
H A D | Block.cpp | 36 block_cache_get(volume->BlockCache(), blockIndex), NULL); in GetReadable()
|
H A D | Transaction.cpp | 317 info->data = block_cache_get(fVolume->BlockCache(), blockIndex); in RegisterBlock()
|
/haiku/src/add-ons/kernel/file_systems/reiserfs/ |
H A D | BlockCache.cpp | 201 return const_cast<void*>(block_cache_get(fCacheHandle, number)); in _GetBlock()
|
/haiku/headers/os/drivers/ |
H A D | fs_cache.h | 77 extern const void *block_cache_get(void *cache, off_t blockNumber);
|
/haiku/src/add-ons/kernel/file_systems/fat/bsd/kern/ |
H A D | vfs_bio.c | 395 newBuf->b_data = (void*)block_cache_get(blockCache, dblkno); in getblkx() 420 newBuf->b_bcpointers[i] = (void*)block_cache_get(blockCache, dblkno + i); in getblkx()
|
/haiku/src/add-ons/kernel/file_systems/iso9660/ |
H A D | kernel_interface.cpp | 281 char* blockData = (char*)block_cache_get(volume->fBlockCache, block); in fs_walk() 369 char* data = (char*)block_cache_get(volume->fBlockCache, block); in fs_read_vnode()
|
H A D | iso9660.cpp | 545 char* buffer = (char*)block_cache_get(volume->fBlockCache, in parse_rock_ridge() 766 = (char*)block_cache_get(volume->fBlockCache, cookie->block); in ISOReadDirEnt()
|
/haiku/src/tests/system/kernel/cache/ |
H A D | block_cache_test.cpp | 487 block_cache_get(gCache, 0); in test_block_cache_discard()
|
/haiku/src/add-ons/kernel/file_systems/bfs/ |
H A D | Journal.cpp | 839 const void* data = block_cache_get(fVolume->BlockCache(), in _WriteTransactionToLog()
|
H A D | BPlusTree.cpp | 449 block = (uint8*)block_cache_get(volume->BlockCache(), fBlockNumber); in InternalSetTo()
|
/haiku/headers/private/fs_shell/ |
H A D | fssh_api_wrapper.h | 854 #define block_cache_get fssh_block_cache_get macro
|
/haiku/docs/user/drivers/ |
H A D | fs_modules.dox | 295 (e.g. block_cache_get() and block_cache_put()). As long as the system has
|
/haiku/src/system/kernel/cache/ |
H A D | block_cache.cpp | 3922 block_cache_get(void* _cache, off_t blockNumber) in block_cache_get() function
|