Lines Matching defs:inoffp
4942 kern_copy_file_range(struct thread *td, int infd, off_t *inoffp, int outfd,
4972 inoffp != NULL ? &cap_pread_rights : &cap_read_rights, &infp);
4997 if (inoffp == NULL)
4998 inoffp = &infp->f_offset;
5001 savinoff = *inoffp;
5034 rl_rcookie = vn_rangelock_tryrlock(invp, *inoffp, *inoffp +
5039 rl_rcookie = vn_rangelock_rlock(invp, *inoffp, *inoffp + len);
5044 error = vn_copy_file_range(invp, inoffp, outvp, outoffp, &retlen,
5052 *inoffp = savinoff;
5066 off_t inoff, outoff, *inoffp, *outoffp;
5069 inoffp = outoffp = NULL;
5070 if (uap->inoffp != NULL) {
5071 error = copyin(uap->inoffp, &inoff, sizeof(off_t));
5074 inoffp = &inoff;
5082 error = kern_copy_file_range(td, uap->infd, inoffp, uap->outfd,
5084 if (error == 0 && uap->inoffp != NULL)
5085 error = copyout(inoffp, uap->inoffp, sizeof(off_t));