/src/sys/compat/sys/ |
time_types.h | 76 timeval50_to_timeval(const struct timeval50 *ts50, struct timeval *ts) 79 ts->tv_sec = ts50->tv_sec; 80 ts->tv_usec = (suseconds_t)ts50->tv_usec; 84 timeval_to_timeval50(const struct timeval *ts, struct timeval50 *ts50) 86 memset(ts50, 0, sizeof(*ts50)); 87 ts50->tv_sec = (long)ts->tv_sec; 88 ts50->tv_usec = ts->tv_usec; 92 timespec50_to_timespec(const struct timespec50 *ts50, struct timespec *ts) 95 ts->tv_sec = ts50->tv_sec [all...] |
/src/lib/libc/compat/sys/ |
compat__lwp_park.c | 56 _lwp_park(const struct timespec50 *ts50, lwpid_t unpark, 61 if (ts50) 62 timespec50_to_timespec(ts50, tsp = &ts);
|
compat_adjtime.c | 60 adjtime(const struct timeval50 *ts50, struct timeval50 *rts50) 67 if (ts50) 68 timeval50_to_timeval(ts50, tsp = &ts);
|
compat_aio_suspend.c | 61 const struct timespec50 * ts50) 65 if (ts50) 66 timespec50_to_timespec(ts50, tsp = &ts);
|
compat_nanosleep.c | 60 nanosleep(const struct timespec50 *ts50, struct timespec50 *rts50) 67 if (ts50) 68 timespec50_to_timespec(ts50, tsp = &ts);
|
compat_lfs_segwait.c | 55 lfs_segwait(fsid_t *fsid, struct timeval50 *ts50) 59 if (ts50) 60 timeval50_to_timeval(ts50, tsp = &ts);
|
compat_mqueue.c | 64 unsigned * __restrict buf, const struct timespec50 * __restrict ts50) 68 if (ts50) 69 timespec50_to_timespec(ts50, tsp = &ts); 77 unsigned buf, const struct timespec50 *ts50) 81 if (ts50) 82 timespec50_to_timespec(ts50, tsp = &ts);
|
compat_kevent.c | 58 struct kevent100 *eventlist, size_t nevents, const struct timespec50 *ts50) 62 if (ts50) 63 timespec50_to_timespec(ts50, tsp = &ts);
|
/src/sys/compat/common/ |
kern_50.c | 69 struct timespec50 ts50; local in function:compat_50_sys__lwp_park 75 error = copyin(SCARG(uap, ts), &ts50, sizeof(ts50)); 78 timespec50_to_timespec(&ts50, &ts); 94 struct timespec50 ts50; local in function:tscopyin 98 error = copyin(u, &ts50, sizeof(ts50)); 101 timespec50_to_timespec(&ts50, s); 108 struct timespec50 ts50; local in function:tscopyout 111 timespec_to_timespec50(s, &ts50); [all...] |
kern_select_50.c | 62 struct timespec50 ts50; local in function:compat_50_kevent_fetch_timeout 67 error = copyin(src, &ts50, sizeof(ts50)); 70 timespec50_to_timespec(&ts50, (struct timespec *)dest);
|
kern_time_50.c | 357 struct timespec50 ts50; local in function:compat_50_sys_aio_suspend 366 error = copyin(SCARG(uap, timeout), &ts50, 370 timespec50_to_timespec(&ts50, &ts); 397 struct timespec50 ts50; local in function:compat_50_sys_mq_timedsend 403 error = copyin(SCARG(uap, abs_timeout), &ts50, sizeof(ts50)); 406 timespec50_to_timespec(&ts50, &ts); 432 struct timespec50 ts50; local in function:compat_50_sys_mq_timedreceive 438 error = copyin(SCARG(uap, abs_timeout), &ts50, sizeof(ts50)); [all...] |