Lines Matching refs:__user
336 unsigned long, offset_low, loff_t __user *, result, in SYSCALL_DEFINE5() argument
403 static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos) in new_sync_read()
421 ssize_t __vfs_read(struct file *file, char __user *buf, size_t count, in __vfs_read()
440 result = vfs_read(file, (void __user *)buf, count, pos); in kernel_read()
446 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos) in vfs_read()
472 static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos) in new_sync_write()
474 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len }; in new_sync_write()
490 static ssize_t __vfs_write(struct file *file, const char __user *p, in __vfs_write()
504 const char __user *p; in __kernel_write()
512 p = (__force const char __user *)buf; in __kernel_write()
535 res = vfs_write(file, (__force const char __user *)buf, count, pos); in kernel_write()
542 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos) in vfs_write()
576 ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count) in ksys_read()
595 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count) in SYSCALL_DEFINE3() argument
600 ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count) in ksys_write()
620 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, in SYSCALL_DEFINE3() argument
626 ssize_t ksys_pread64(unsigned int fd, char __user *buf, size_t count, in ksys_pread64()
646 SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf, in SYSCALL_DEFINE4() argument
652 ssize_t ksys_pwrite64(unsigned int fd, const char __user *buf, in ksys_pwrite64()
672 SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf, in SYSCALL_DEFINE4() argument
764 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector, in rw_copy_check_uvector()
814 void __user *buf = iov[seg].iov_base; in rw_copy_check_uvector()
841 const struct compat_iovec __user *uvector, unsigned long nr_segs, in compat_rw_copy_check_uvector()
987 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec, in vfs_readv()
1004 static ssize_t vfs_writev(struct file *file, const struct iovec __user *vec, in vfs_writev()
1022 static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec, in do_readv()
1046 static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec, in do_writev()
1076 static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec, in do_preadv()
1099 static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec, in do_pwritev()
1122 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE3() argument
1128 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE3() argument
1134 SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE5() argument
1142 SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE6() argument
1154 SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE5() argument
1162 SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE6() argument
1176 const struct compat_iovec __user *vec, in compat_readv()
1196 const struct compat_iovec __user *vec, in do_compat_readv()
1215 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE3() argument
1222 const struct compat_iovec __user *vec, in do_compat_preadv64()
1242 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE4() argument
1250 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE5() argument
1260 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE5() argument
1271 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE6() argument
1284 const struct compat_iovec __user *vec, in compat_writev()
1306 const struct compat_iovec __user* vec, in do_compat_writev()
1324 const struct compat_iovec __user *, vec, in COMPAT_SYSCALL_DEFINE3() argument
1331 const struct compat_iovec __user *vec, in do_compat_pwritev64()
1351 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE4() argument
1359 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE5() argument
1369 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE5() argument
1380 const struct compat_iovec __user *,vec, in COMPAT_SYSCALL_DEFINE6() argument
1492 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count) in SYSCALL_DEFINE4() argument
1511 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count) in SYSCALL_DEFINE4() argument
1530 compat_off_t __user *, offset, compat_size_t, count) in COMPAT_SYSCALL_DEFINE4() argument
1550 compat_loff_t __user *, offset, compat_size_t, count) in COMPAT_SYSCALL_DEFINE4() argument
1690 SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in, in SYSCALL_DEFINE6() argument
1691 int, fd_out, loff_t __user *, off_out, in SYSCALL_DEFINE6()