Home | History | Annotate | Download | only in common

Lines Matching defs:lts

1045 	struct linux_timespec lts;
1066 error = copyin(SCARG(uap, timeout), &lts, sizeof(lts));
1069 linux_to_native_timespec(&uts, &lts);
1100 native_to_linux_timespec(&lts, &uts);
1101 error = copyout(&lts, SCARG(uap, timeout), sizeof(lts));
1117 struct linux_timespec lts0, *lts;
1123 lts = SCARG(uap, timeout);
1124 if (lts) {
1125 if ((error = copyin(lts, &lts0, sizeof(lts0))) != 0)
1647 struct linux_timespec lts[2];
1651 error = copyin(SCARG(uap, times), &lts, sizeof(lts));
1654 linux_to_native_timespec(&ts[0], &lts[0]);
1655 linux_to_native_timespec(&ts[1], &lts[1]);
1675 struct linux_timespec lts;
1689 &lts, sizeof(lts))) != 0) {
1692 linux_to_native_timespec(&ts, &lts);
1953 struct linux_timespec lts, *ltsp;
1958 lts.tv_sec = timeout / 1000;
1959 lts.tv_nsec = (timeout % 1000) * 1000000;
1961 ltsp = &lts;
1985 struct linux_timespec lts, *ltsp;
1989 error = copyin(SCARG(uap, timeout), &lts, sizeof(lts));
1993 ltsp = &lts;