Lines Matching refs:pos_out
1506 struct file *file_out, loff_t pos_out, in generic_copy_file_checks() argument
1547 if (pos_in + count < pos_in || pos_out + count < pos_out) in generic_copy_file_checks()
1557 ret = generic_write_check_limits(file_out, pos_out, &count); in generic_copy_file_checks()
1563 pos_out + count > pos_in && in generic_copy_file_checks()
1564 pos_out < pos_in + count) in generic_copy_file_checks()
1577 struct file *file_out, loff_t pos_out, in vfs_copy_file_range() argument
1587 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len, in vfs_copy_file_range()
1596 ret = rw_verify_area(WRITE, file_out, &pos_out, len); in vfs_copy_file_range()
1612 file_out, pos_out, in vfs_copy_file_range()
1616 file_out, pos_out, in vfs_copy_file_range()
1651 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out, in vfs_copy_file_range()
1673 loff_t pos_out; in SYSCALL_DEFINE6() local
1695 if (copy_from_user(&pos_out, off_out, sizeof(loff_t))) in SYSCALL_DEFINE6()
1698 pos_out = fd_file(f_out)->f_pos; in SYSCALL_DEFINE6()
1705 ret = vfs_copy_file_range(fd_file(f_in), pos_in, fd_file(f_out), pos_out, len, in SYSCALL_DEFINE6()
1709 pos_out += ret; in SYSCALL_DEFINE6()
1719 if (copy_to_user(off_out, &pos_out, sizeof(loff_t))) in SYSCALL_DEFINE6()
1722 fd_file(f_out)->f_pos = pos_out; in SYSCALL_DEFINE6()