Lines Matching refs:pos_out
1375 struct file *file_out, loff_t pos_out, in generic_copy_file_range() argument
1378 return do_splice_direct(file_in, &pos_in, file_out, &pos_out, in generic_copy_file_range()
1384 struct file *file_out, loff_t pos_out, in do_copy_file_range() argument
1398 file_out, pos_out, in do_copy_file_range()
1401 return generic_copy_file_range(file_in, pos_in, file_out, pos_out, len, in do_copy_file_range()
1413 struct file *file_out, loff_t pos_out, in generic_copy_file_checks() argument
1434 if (pos_in + count < pos_in || pos_out + count < pos_out) in generic_copy_file_checks()
1444 ret = generic_write_check_limits(file_out, pos_out, &count); in generic_copy_file_checks()
1450 pos_out + count > pos_in && in generic_copy_file_checks()
1451 pos_out < pos_in + count) in generic_copy_file_checks()
1464 struct file *file_out, loff_t pos_out, in vfs_copy_file_range() argument
1472 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len, in vfs_copy_file_range()
1481 ret = rw_verify_area(WRITE, file_out, &pos_out, len); in vfs_copy_file_range()
1499 file_out, pos_out, in vfs_copy_file_range()
1508 ret = do_copy_file_range(file_in, pos_in, file_out, pos_out, len, in vfs_copy_file_range()
1533 loff_t pos_out; in SYSCALL_DEFINE6() local
1555 if (copy_from_user(&pos_out, off_out, sizeof(loff_t))) in SYSCALL_DEFINE6()
1558 pos_out = f_out.file->f_pos; in SYSCALL_DEFINE6()
1561 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len, in SYSCALL_DEFINE6()
1565 pos_out += ret; in SYSCALL_DEFINE6()
1575 if (copy_to_user(off_out, &pos_out, sizeof(loff_t))) in SYSCALL_DEFINE6()
1578 f_out.file->f_pos = pos_out; in SYSCALL_DEFINE6()