Symbol: vfs_read_pages
headers/private/kernel/vfs.h
102
status_t vfs_read_pages(struct vnode *vnode, void *cookie, off_t pos,
src/system/kernel/cache/file_cache.cpp
1396
status_t error = vfs_read_pages(ref->vnode, cookie, offset, &vec, 1, 0,
src/system/kernel/cache/file_cache.cpp
350
status_t status = vfs_read_pages(ref->vnode, cookie, offset, vecs, count,
src/system/kernel/cache/file_cache.cpp
502
status_t status = vfs_read_pages(ref->vnode, cookie, offset + pageOffset,
src/system/kernel/cache/file_cache.cpp
570
status = vfs_read_pages(ref->vnode, cookie, offset, &readVec, 1,
src/system/kernel/cache/file_cache.cpp
593
status = vfs_read_pages(ref->vnode, cookie,
src/system/kernel/cache/vnode_store.cpp
63
status_t status = vfs_read_pages(fVnode, NULL, offset, vecs, count,
src/system/kernel/fs/vfs.cpp
4075
status_t status = vfs_read_pages(vnode, descriptor->cookie, pos, vecs,
src/system/kernel/fs/vfs.cpp
5833
status_t status = (write ? vfs_write_pages : vfs_read_pages)(vnode,
src/system/kernel/vm/VMAnonymousCache.cpp
854
status_t status = vfs_read_pages(swapFile->vnode, swapFile->cookie, pos,
src/tests/system/kernel/cache/pages_io_test.cpp
494
status = vfs_read_pages(ref->device, ref->cookie, fileVecs[0].offset, vecs,
src/tests/system/kernel/cache/pages_io_test.cpp
594
status = vfs_read_pages(ref->device, ref->cookie,
src/tools/fs_shell/file_cache.cpp
92
fssh_status_t status = vfs_read_pages(ref->node, cookie,
src/tools/fs_shell/vfs.h
78
fssh_status_t vfs_read_pages(void *vnode, void *cookie, fssh_off_t pos,