Symbol: cache_start_transaction
headers/os/drivers/fs_cache.h
36
extern int32 cache_start_transaction(void *cache);
src/add-ons/kernel/file_systems/bfs/Journal.cpp
1024
fTransactionID = cache_start_transaction(fVolume->BlockCache());
src/add-ons/kernel/file_systems/btrfs/Journal.cpp
76
fTransactionID = cache_start_transaction(fVolume->BlockCache());
src/add-ons/kernel/file_systems/ext2/Journal.cpp
259
fTransactionID = cache_start_transaction(fFilesystemBlockCache);
src/tests/system/kernel/cache/block_cache_test.cpp
332
int32 id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
358
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
384
int32 id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
431
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
482
int32 id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
511
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
524
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
536
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
562
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
572
id = cache_start_transaction(gCache);
src/tests/system/kernel/cache/block_cache_test.cpp
595
id = cache_start_transaction(gCache);
src/tests/system/kernel/file_corruption/fs/Transaction.cpp
76
fID = cache_start_transaction(fVolume->BlockCache());