Lines Matching defs:tptr
3947 syscallarg(const struct timeval *) tptr;
3951 SCARG(uap, tptr), UIO_USERSPACE);
3964 syscallarg(const struct timeval *) tptr;
3972 error = do_sys_utimes(l, fp->f_vnode, NULL, 0, SCARG(uap, tptr),
3984 syscallarg(const struct timespec *) tptr;
3993 SCARG(uap, tptr), UIO_USERSPACE);
4008 syscallarg(const struct timeval *) tptr;
4012 SCARG(uap, tptr), UIO_USERSPACE);
4022 syscallarg(const struct timespec *) tptr;
4026 const struct timespec *tptr;
4029 tptr = SCARG(uap, tptr);
4033 SCARG(uap, path), follow, tptr, UIO_USERSPACE);
4043 const struct timespec *tptr, enum uio_seg seg)
4046 return do_sys_utimensat(l, AT_FDCWD, vp, path, flag, tptr, seg);
4051 const char *path, int flag, const struct timespec *tptr, enum uio_seg seg)
4072 if (tptr == NULL) {
4079 error = copyin(tptr, ts, sizeof (ts));
4083 ts[0] = tptr[0];
4084 ts[1] = tptr[1];
4132 const struct timeval *tptr, enum uio_seg seg)
4138 if (tptr != NULL) {
4142 error = copyin(tptr, tv, sizeof(tv));
4145 tptr = tv;
4148 if ((tptr[0].tv_usec == UTIME_NOW) ||
4149 (tptr[0].tv_usec == UTIME_OMIT))
4150 ts[0].tv_nsec = tptr[0].tv_usec;
4152 if (tptr[0].tv_usec < 0 || tptr[0].tv_usec >= 1000000)
4155 TIMEVAL_TO_TIMESPEC(&tptr[0], &ts[0]);
4158 if ((tptr[1].tv_usec == UTIME_NOW) ||
4159 (tptr[1].tv_usec == UTIME_OMIT))
4160 ts[1].tv_nsec = tptr[1].tv_usec;
4162 if (tptr[1].tv_usec < 0 || tptr[1].tv_usec >= 1000000)
4165 TIMEVAL_TO_TIMESPEC(&tptr[1], &ts[1]);