Home
last modified time | relevance | path

Searched refs:vfs_readv (Results 1 – 5 of 5) sorted by relevance

/kernel/liteos_a/fs/vfs/operation/
Dvfs_readv.c91 ssize_t vfs_readv(int fd, const struct iovec *iov, int iovcnt, off_t *offset) in vfs_readv() function
146 return vfs_readv(fd, iov, iovcnt, NULL); in readv()
Dvfs_preadv.c49 return vfs_readv(fd, iov, iovcnt, &offset); in preadv()
/kernel/liteos_a/fs/vfs/
DBUILD.gn55 "operation/vfs_readv.c",
/kernel/linux/linux-5.10/fs/
Dread_write.c906 static ssize_t vfs_readv(struct file *file, const struct iovec __user *vec, in vfs_readv() function
953 ret = vfs_readv(f.file, vec, vlen, ppos, flags); in do_readv()
1008 ret = vfs_readv(f.file, vec, vlen, &pos, flags); in do_preadv()
/kernel/liteos_a/syscall/
Dfs_syscall.c1375 ret = vfs_readv(fd, iovRet, valid_iovcnt, NULL); in SysReadv()