Lines Matching defs:off_out
1068 syscallarg(unsigned long) off_out;
1076 off_t off_in = 0, off_out = 0;
1127 (SCARG(uap, off_out) != NULL && *SCARG(uap, off_out) < 0) ||
1151 if (SCARG(uap, off_out) != NULL) {
1152 error = copyin(SCARG(uap, off_out), &off_out, sizeof(off_out));
1159 if (off_out < 0 || len > OFF_MAX - off_out ||
1168 ((off_in <= off_out && off_in + (off_t)len > off_out) ||
1169 (off_in > off_out && off_out + (off_t)len > off_in))) {
1216 auio.uio_offset = have_off_out ? off_out : fp_out->f_offset;
1240 off_out += written_bytes;
1258 error = copyout(&off_out, SCARG(uap, off_out), sizeof(off_t));