Lines Matching refs:uts
2309 struct timespec uts; in linux_pselect6() local
2340 error = linux_to_native_timespec(&uts, <s); in linux_pselect6()
2344 TIMESPEC_TO_TIMEVAL(&utv, &uts); in linux_pselect6()
2373 TIMEVAL_TO_TIMESPEC(&utv, &uts); in linux_pselect6()
2375 error = native_to_linux_timespec(<s, &uts); in linux_pselect6()
2388 struct timespec uts, *tsp; in linux_ppoll() local
2408 error = linux_to_native_timespec(&uts, <s); in linux_ppoll()
2413 tsp = &uts; in linux_ppoll()
2423 timespecsub(&uts, &ts1, &uts); in linux_ppoll()
2424 if (uts.tv_sec < 0) in linux_ppoll()
2425 timespecclear(&uts); in linux_ppoll()
2427 timespecclear(&uts); in linux_ppoll()
2429 error = native_to_linux_timespec(<s, &uts); in linux_ppoll()