Lines Matching defs:pos_out
1361 * @pos_out: file offset to write data to
1378 struct file *file_out, loff_t pos_out,
1381 return do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1394 struct file *file_out, loff_t pos_out,
1435 if (pos_in + count < pos_in || pos_out + count < pos_out)
1445 ret = generic_write_check_limits(file_out, pos_out, &count);
1451 pos_out + count > pos_in &&
1452 pos_out < pos_in + count)
1465 struct file *file_out, loff_t pos_out,
1474 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len,
1483 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1499 file_out, pos_out,
1507 file_out, pos_out,
1527 ret = generic_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1552 loff_t pos_out;
1574 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1577 pos_out = f_out.file->f_pos;
1584 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1588 pos_out += ret;
1598 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1601 f_out.file->f_pos = pos_out;