Searched refs:vfs_readv (Results 1 – 5 of 5) sorted by relevance
/kernel/liteos_a/fs/vfs/operation/ |
D | vfs_readv.c | 91 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()
|
D | vfs_preadv.c | 49 return vfs_readv(fd, iov, iovcnt, &offset); in preadv()
|
/kernel/liteos_a/fs/vfs/ |
D | BUILD.gn | 55 "operation/vfs_readv.c",
|
/kernel/linux/linux-5.10/fs/ |
D | read_write.c | 906 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/ |
D | fs_syscall.c | 1375 ret = vfs_readv(fd, iovRet, valid_iovcnt, NULL); in SysReadv()
|